Advertisement
Guest User

Untitled

a guest
Mar 11th, 2014
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.13 KB | None | 0 0
  1. if (i % 2 == 0)
  2. {
  3. Console.Write(i);
  4. Console.WriteLine();
  5. }
  6.  
  7. else
  8.  
  9. {
  10. Console.Write(i * (-1);
  11. Console.WriteLine();
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement