#include<stdio.h>
int main()
{
int x=2,y=3;
int temp;
temp=x;
x=y;
y=temp;
printf("%d,%d",x,y);
}
输入2个变量的值,交换这2个变量的值后输出。
#include<stdio.h>
int main()
{
int x=2,y=3;
int temp;
temp=x;
x=y;
y=temp;
printf("%d,%d",x,y);
}
输入2个变量的值,交换这2个变量的值后输出。