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;
时间: 2024-10-12 07:57:21