Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. static void PrintEven(int x)
  2. {
  3. int c = 0;
  4. while (c <= x)
  5. {
  6. if (c % 2 == 0)
  7. Console.WriteLine(c);
  8. c++;
  9. }
  10. Console.WriteLine("Done.");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement