第一章 课后习题 10
Posted dragonliu欧美
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一章 课后习题 10相关的知识,希望对你有一定的参考价值。
1 #include <iostream> 2 using namespace std; 3 int main() 4 { void sort(int x,int y,int z); 5 int x,y,z; 6 cin>>x>>y>>z; 7 sort(x,y,z); 8 return 0; 9 } 10 void sort(int x,int y,int z) 11 { 12 int temp; 13 if(x>y) {temp=x;x=y;y=temp;} //{ }内3个语句的作用是将x和y的值互换) 14 if(z<x) cout<<z<<‘,‘<<x<<‘,‘<<y<<endl; 15 else if (z<y) cout<<x<<‘,‘<<z<<‘,‘<<y<<endl; 16 else cout<<x<<‘,‘<<y<<‘,‘<<z<<endl;
以上是关于第一章 课后习题 10的主要内容,如果未能解决你的问题,请参考以下文章