fork download
  1. int x = 4;
  2. while (x > 0)
  3. { if (x % 2 == 0) Console.WriteLine(x);
  4. x--;
  5. }
Success #stdin #stdout 0.05s 28908KB
stdin
Standard input is empty
stdout
4
2