码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 函数的函数声明

时间:2014-07-13 19:46:46      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   strong   os   io   

c++ 函数的函数声明

 

只要在被调用函数的首部的末尾加一个分号,就成为对该函数的函数声明。函数声明的位置应当在函数调用之前。

#include <iostream>
using namespace std;
int main( )
{ int max(int x,int y);         //对max函数作声明
  int a,b,c;
  cin>>a>>b;
  c=max(a,b);                   //调用max函数
  cout<<″max=″<<c<<endl;
  return 0;
}
int max(int x,int y)            //定义max函数
{ int z;
  if(x>y) z=x;
  else z=y;
  return(z);
}

 

 

 

 

 

 

 

 

 

c++ 函数的函数声明,布布扣,bubuko.com

c++ 函数的函数声明

标签:style   blog   color   strong   os   io   

原文地址:http://www.cnblogs.com/mjorcen/p/3841065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!