注意:部分源程序已存放在文件test2_2.cpp中。
请勿修改主函数main和其他函数中的任何内容,仅在函数的花括号中填写若干语句。
输出结果如下:
3 4
2 3 4
文件rest2_2.cpp的内容如下:
include<iostream.h>
void sort(int &x,int &y)
{
/**1**/
}
void sort(iht x,int y,int z)
{
/**2**/
}
void main()
{
int a=4,b=3,c=2;
sort(a,b);
sort(a,b,C);
}