第一章 作业10
Posted TOTO2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一章 作业10相关的知识,希望对你有一定的参考价值。
#include<iostream> using namespace std; int main() { void sort(int x,int y,int z); int x,y,z; cin>>x>>y>>z; sort(x,y,z); return 0; } void sort(int x,int y,int z) { int temp; if(x>y) {temp=x;x=y;y=temp;} //{}内3个语句的作用是将X和Y的值互换 if(z<x) cout<<z<<\',\'<<x<<\',\'<<y<<endl; else if(z<y)cout<<x<<\',\'<<z<<\',\'<<y<<endl; else cout<<x<<\',\'<<y<<\',\'<<z<<endl; }
以上是关于第一章 作业10的主要内容,如果未能解决你的问题,请参考以下文章