[原创]请大虾帮我讲解此题
请大虾帮我讲解:
以下程序不用第三个变量,实现将两个数进行对调操作,程序中(1)为( ),(2)为( ),(3)为( )。
#include <stdio.h>
main()
{int a,b;
scanf("%d%d",&a,&b);
printf("a=%d b=%d",a,b);
a=(1);b=(2);c=(3);
printf("a=%d b=%d\n",a,b);
}
[此贴子已经被作者于2004-09-19 18:15:33编辑过]