如何对变量a、b的值进行交换 //格式: int a=3,b=5; int temp; temp=a; a=b; b=temp; 想要将两个变量的值进行交换、需要定义一个中间变量 将a的值赋给中间变量temp temp=3 再把b的值赋给a a=5 然后把temp的值赋给b b=3