C++——函数的常见样式与声明

1.常见的函数样式有4种

 1.无参返回

#include
using namespace std;

void test01() 
{
cout<<"this is test01"<

2.有参返回

#include
using namespace std;

void test02(int a) 
{  
cout<<"this is test02 a="<

3.无参返回

#include
using namespace std;

int test03()
{
cout<<"this is test03"#include
using namespace std;

int test04(int a)
{
cout<<"this is test04 a="<

你可能感兴趣的:(c++)