class huhuan {//定义一个名叫huhuan的类
/*
对两个整数变量的值进行互换(使用第三方变量实现)
思路:
定义数据类型为int的三个变量,变量名为a = 2, b = 3,c;
先把a的值赋给c,c = 2;此时a为空,再把b的值赋给a,a = 3;
然后再把c的值赋给b,b = 2.
*/
public static void main(String[] args) {//主函数
int a ,b,c ;//定义int型变量a,b,c
a = 2;b = 3;//a的赋值是2,b的赋值是3
c=a; //把a的值赋给c,
a=b; //把b的值赋给a
b=c; //把c的值赋给b
System.out.println("a="+a);//在屏幕上打印出互换后a的值
System.out.println("b="+b);//在屏幕上打印出互换后b的值
}
}
|