第一章 课后习题 7
Posted dragonliu欧美
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一章 课后习题 7相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章