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

第一章 课后习题 7

时间:2017-09-10 15:02:36      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:str   std   pre   col   namespace   div   names   include   out   

 1 #include<iostream>
 2 using namespace std;
 3 int main()
 4 {
 5   int a,b,c;
 6   int f(int x,int y,int z);
 7   cin>>a>>b>>c;
 8   c=f(a,b,c);
 9   cout<<c<<endl;
10   return 0;
11 }
12 int f(int x,int y,int z)
13 {
14   int m;
15   if(x<y) m=x;
16    else m=y;
17   if (z<m) m=z;
18   return(m);
19 }

 

第一章 课后习题 7

标签:str   std   pre   col   namespace   div   names   include   out   

原文地址:http://www.cnblogs.com/Dragonliuoumai/p/7501035.html

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