Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CS1_1_9
- {
- class FirstTenNumbers
- {
- static void Main()
- {
- for (int i = 0; i < 10; i += 2)
- {
- Console.Write("{0}, {1}, ", i + 2, - i - 3);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement