CL 9 Comp Proj Part I
CL 9 Comp Proj Part I
c=a;
a=b;
b=c;
System.out.println("The value of a="+a);
System.out.println("The value of b="+b);
}
}
Variables descriptions:
Variables Data Types Descriptions
a int 95
b int 45
c int 0 (swap)