Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Program
- {
- static void Main()
- {
- for (int i = 0; i < 1000 ; i++)
- {
- if ((i & 1) == 0) Console.WriteLine(i);
- else Console.WriteLine(-i);
- }
- }
- }
- И на конзолата числата ми започват от 701, а не от 0. Но когато го напиша.....
- using System;
- class Program
- {
- static void Main()
- {
- for (int i = 0; i < 1000 ; i++)
- {
- if ((i & 1) == 0) Console.WriteL(i);
- else Console.Write(-i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement