Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace pentla2
- {
- class Program
- {
- static void Main(string[] args)
- {
- int i = 10;
- pocz:
- if (i == 303)
- {
- i = i + 1;
- goto pocz;
- }
- Console.WriteLine(i + " ");
- i = i + 1;
- if (i < 1000) goto pocz;
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment