Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static void Main()
  2. {
  3. for (int i = 2; i < 1002; i++)
  4. {
  5. if (i % 2 == 0)
  6. {
  7. Console.Write(i);
  8. Console.WriteLine();
  9. }
  10. else
  11. {
  12. Console.Write(i * (-1));
  13. Console.WriteLine();
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement