其他分享
首页 > 其他分享> > 053.函数-函数声明

053.函数-函数声明

作者:互联网

#include <iostream>
using namespace std;


//提前告诉编译器函数的存在,可利用函数的声明
//函数的声明
//声明可以写多次,定义只能一次
int max(int a, int b);

int main()
{

    cout << max(100, 600) << endl;

    system("pause");
    return 0;
}

//函数定义
int max(int a, int b)
{
    return a > b ? a : b;
}

 

标签:std,函数,int,max,编译器,声明,053
来源: https://www.cnblogs.com/ceovs/p/15226446.html