谭浩强 c++程序设计第一章课后习题 第10题
#include <iostream> using namespace std; int main() { int a,b,c; cout<<"请输入三个整数类型的数字:" <<endl; cin>>a>>b>>c; void sort(int x,int y,int z); sort(a,b,c);//abc有具体值,称为实际参数 return 0; } void sort(int x,int y,int z)//用于接收实际参数,称为形式参数 { int temp; if(x>y) { temp=x;x=y;y=temp; } if(z<x) cout<<z<<','<<x<<','<<y<<endl; else if(z<y) cout<<x<<','<<z<<','<<y<<endl; else cout<<x<<','<<y<<','<<z<<endl; }
Never waste time any more, Never old man be a yong man