Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace test2
- {
- class Program
- {
- static void Main(string[] args)
- {
- menu:
- Console.WriteLine("wybirz opcje");
- Console.WriteLine("1 - dodawanie");
- Console.WriteLine("2 - odejmowanie");
- int w;
- w = Convert.ToInt32(Console.ReadLine());
- switch (w)
- {
- case 1:
- Console.WriteLine("dodawanie");
- goto menu;
- case 2:
- Console.WriteLine("odejmowanie");
- break;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment