其他分享
首页 > 其他分享> > 052.函数-函数常见样式

052.函数-函数常见样式

作者:互联网

#include <iostream>
using namespace std;

//函数常见样式
//1.无参无返
void test01()
{
    cout << "test01" << endl;
}

//2.有参无返
void test02(int a)
{
    cout << "test02" << a << endl;
}

//3.无参有返
int test03()
{
    cout << "test03" << endl;
    return 100;
}

//4.有参有返
int test04(int a)
{
    cout << "test04" << endl;
    return a;
}

int main()
{
    //1.无参无返
    test01();

    //2.有参无返
    test02(2);

    //3.无参有返
    int a = test03();

    //4.有参有返
    int b = 1000;
    int c = test04(b);

    system("pause");
    return 0;
}

 

标签:std,函数,样式,void,常见,test01,052
来源: https://www.cnblogs.com/ceovs/p/15226439.html