fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x =3;
  8. int y =4;
  9. int z;
  10.  
  11.  
  12. Console.WriteLine(x);
  13. Console.WriteLine(y);
  14.  
  15. z = x; //Zwischenspeicher
  16. x = y; //y auf x übertragen
  17. y = z;//x auf y übertragten
  18.  
  19. Console.WriteLine(x);
  20. Console.WriteLine(y);
  21.  
  22. }
  23. }
Success #stdin #stdout 0.04s 23888KB
stdin
123
200
stdout
3
4
4
3