fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x = 1;
  8. int y = 2;
  9. int z;
  10.  
  11. z = x;
  12. x = y;
  13. y = z;
  14.  
  15. Console.WriteLine("Wert für X:");
  16. Console.WriteLine(x);
  17. Console.WriteLine("Wert für Y:");
  18. Console.WriteLine(y);
  19.  
  20. }
  21. }
Success #stdin #stdout 0.05s 23944KB
stdin
stdout
Wert für X:
2
Wert für Y:
1