c++学习日志15

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

1. 无参无返

2. 有参无返

3. 无参有返

4. 有参有返
#include<iostream>
using namespace std;

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

//2、有参无返    
void test02(int a)
{
    cout << "this is test02 a = " << a << endl;
}

//3、无参有返
int test03()
{
    cout << "this is test03" << endl;
    return 1000;
}

//4、有参有返
int test04(int a)
{
    cout << "this is test04 a = " << a << endl;
    return a;
}


int main(){

    //无参无返函数调用
    test01();

    //有参无返函数调用
    test02(100);

    //无参有返函数调用
    int num1 = test03();
    cout << "num1 = " << num1 << endl;

    //有参有返函数调用
    int num2 = test04(10000)
    cout << "num2 = " << num2 << endl;
    

    system("pause");

    return 0;
}
全部评论

相关推荐

(010)&nbsp;5083&nbsp;3000&nbsp;这样的电话到底是哪家公司啊&nbsp;打过去是什么智联招聘&nbsp;救命🆘
小火柴燃烧吧:应该是你通过智联投的公司人事联系你了,或者是把招聘渠道交给智联的公司,你想想投过哪些公司
点赞 评论 收藏
分享
白也ya:今天也是狠狠的被boss拷打了😋,终于知道双非想约到面试有多难了
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务