public class Main {
public static void main(String[] args) {
String x = "Water";
String y = "Kool-Aid";
String temp;
temp = x;
x=y;
y=temp;
System.out.println("x: "+x);
System.out.println("y: "+y);
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)