Ziomnexpl

test2

Apr 10th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.64 KB | None | 0 0
  1. using System;
  2.  
  3. namespace test2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             menu:
  10.             Console.WriteLine("wybirz opcje");
  11.             Console.WriteLine("1 - dodawanie");
  12.             Console.WriteLine("2 - odejmowanie");
  13.             int w;
  14.             w = Convert.ToInt32(Console.ReadLine());
  15.             switch (w)
  16.             {
  17.                 case 1:
  18.                     Console.WriteLine("dodawanie");
  19.                     goto menu;
  20.                 case 2:
  21.                     Console.WriteLine("odejmowanie");
  22.                     break;
  23.             }
  24.  
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment