You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package shahadatjavaprimary;
public class Swaptwonumber {
public static void main(String[] arg){
int a=10,b=20;
System.out.println("before swaping: a,b="+a+","+b);
int temp;
temp=a;
a=b;
b=temp;
System.out.println("after swaping: a,b="+a+","+b);
}