fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4.  
  5. public class Main
  6. {
  7. public static void main (String[] args)
  8. {
  9.  
  10. int X = 4;
  11. int Y = 5;
  12. int T = Y;
  13.  
  14. Y = X;
  15. X = T;
  16.  
  17. System.out.println("Zahl 1 = " + X + "\n");
  18. System.out.println("Zahl 2 = " + Y + "\n");
  19. }
  20. }
Success #stdin #stdout 0.1s 320576KB
stdin

stdout
Zahl 1 = 5

Zahl 2 = 4