fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7.  
  8. int x = 5; //Definition
  9. int y = 3; //Definition
  10.  
  11. Console.WriteLine("Ergebnis: ");
  12. Console.WriteLine("x: " + y); // Ausgeben
  13. Console.WriteLine("y: " + x); // Ausgeben
  14.  
  15. }
  16. }
Success #stdin #stdout 0.05s 23920KB
stdin
Standard input is empty
stdout
Ergebnis: 
x: 3
y: 5