Advertisement
cuniszkiewicz

GraFilip

Oct 31st, 2023
867
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.15 KB | None | 0 0
  1. namespace grafilip
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             int liczbaWygrywajaca = 5;
  8.             int liczbaGracza;
  9.             bool podpowiedzi = false;
  10.             char decyzjaKoniec;
  11.  
  12.         Poczatek:
  13.             Console.Clear();
  14.             Console.WriteLine("Podaj liczbe od 1-10: ");
  15.             liczbaGracza = int.Parse(Console.ReadLine());
  16.             Console.Clear();
  17.             if (liczbaGracza == 5)
  18.             {
  19.                 Console.WriteLine("Wygrales");
  20.  
  21.             }
  22.             else
  23.             {
  24.                 Console.WriteLine("rzegrales");
  25.                 Console.WriteLine();
  26.                 Console.WriteLine();
  27.             }
  28.             Console.WriteLine("Czy chcesz zagrac ponownie? t-tak n-nie: ");
  29.             decyzjaKoniec = char.Parse(Console.ReadLine());
  30.             if (decyzjaKoniec == 't')
  31.             {
  32.                 goto Poczatek;
  33.             }
  34.             else
  35.             {
  36.                 Console.Clear();
  37.                 Console.WriteLine("\n\n\n\n\n\n\t\t\t\t\t\t\t\tDziekuje za skorzystanie z gry.");
  38.             }
  39.  
  40.         }
  41.     }
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement