Description
交换两个变量的值,由终端输入两个整数给变量x、y,然后交换x和y的值后,输出x和y。
Input
从键盘输入两个整数变量x和y;
Output
在交换x、y的值后将x和y输出!
Sample
Input
4 6
Output
6 4
#include<stdio.h>
int main()
{
int x,y,t;
scanf("%d %d",&x,&y);
t=x;
x=y;
y=t;
printf("%d %d",x,y);
return 0;
}
运行结果
4 6
6 4
Process returned 0 (0x0) execution time : 2.566 s
Press any key to continue.