#includeusing namespace std;int main(){ int a,b,c; cout<<"请输入三个整数类型的数字:" < >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
本文共 384 字,大约阅读时间需要 1 分钟。
#includeusing namespace std;int main(){ int a,b,c; cout<<"请输入三个整数类型的数字:" < >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
转载于:https://www.cnblogs.com/qingyundian/p/7492912.html