switch two varibles

PHOTO EMBED

Wed Mar 22 2023 15:38:28 GMT+0000 (Coordinated Universal Time)

Saved by @Mohamedshariif #java

public class FirstPrograming {
    public static void main(String[] args) {
        
        String x = "mother";
        String y= "father";
        String temp;
        
        temp=x;
        x=y;
        y=temp;
        
        System.out.println("x: "+x);
        System.out.println("y: "+y);
    }
}
content_copyCOPY