Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace grafilip
- {
- class Program
- {
- static void Main(string[] args)
- {
- int liczbaWygrywajaca = 5;
- int liczbaGracza;
- bool podpowiedzi = false;
- char decyzjaKoniec;
- Poczatek:
- Console.Clear();
- Console.WriteLine("Podaj liczbe od 1-10: ");
- liczbaGracza = int.Parse(Console.ReadLine());
- Console.Clear();
- if (liczbaGracza == 5)
- {
- Console.WriteLine("Wygrales");
- }
- else
- {
- Console.WriteLine("rzegrales");
- Console.WriteLine();
- Console.WriteLine();
- }
- Console.WriteLine("Czy chcesz zagrac ponownie? t-tak n-nie: ");
- decyzjaKoniec = char.Parse(Console.ReadLine());
- if (decyzjaKoniec == 't')
- {
- goto Poczatek;
- }
- else
- {
- Console.Clear();
- Console.WriteLine("\n\n\n\n\n\n\t\t\t\t\t\t\t\tDziekuje za skorzystanie z gry.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement