码迷,mamicode.com
首页 > 其他好文 > 详细

函数与指针求大者

时间:2018-08-01 16:00:43      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:code   ret   using   console   style   cout   char   space   NPU   

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 int main(int argc, char** argv) {
 6     int max(int x,int y);
 7     int a,b,m;
 8     cin>>a>>b;
 9     m=max(a,b);
10     cout <<"max="<<m<<endl;
11     return 0;
12 }
13 
14 int max(int x,int y)
15 {
16     int z;
17     if(x>y)z=x;
18     else z=y;
19     return(z);
20 }

 

函数与指针求大者

标签:code   ret   using   console   style   cout   char   space   NPU   

原文地址:https://www.cnblogs.com/borter/p/9401531.html

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