Advertisement
cuniszkiewicz

SimpleGame

Nov 20th, 2024
61
0
29 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.78 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. using System.Threading.Tasks;
  7.  
  8. namespace SimpleGame
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             int userNumber;
  15.             char decision;
  16.            
  17.             NewGame:
  18.             Console.Clear();
  19.             Random rand = new Random(DateTime.Now.Millisecond);
  20.             int winNumber = Convert.ToInt32(rand.Next(1, 11)); //1-10
  21.            
  22.             int counter = 1;
  23.            // Console.WriteLine($"Win number: {winNumber} ");
  24.             Start:
  25.            
  26.             Console.Write("Put a number from range 1-10: ");
  27.             userNumber = int.Parse(Console.ReadLine());
  28.  
  29.             if (userNumber == winNumber)
  30.             {
  31.                 Console.WriteLine("You won!");
  32.             }
  33.             else
  34.             {
  35.                 if (counter < 3)
  36.                 {
  37.                     Console.WriteLine("Try again!");
  38.                     //Console.ReadKey();
  39.                     counter = counter + 1; //counter++;
  40.                     goto Start;
  41.                 }
  42.                 else
  43.                     Console.WriteLine($"You loose! Winning number was: {winNumber}");
  44.  
  45.             }
  46.            
  47.             Console.ReadKey();
  48.            
  49.             Console.Write("Do you want to play again (y - yes): ");
  50.             decision = char.Parse(Console.ReadLine());
  51.             if (decision == 'y')
  52.                 goto NewGame;
  53.             else
  54.             {
  55.                 Console.Clear();
  56.                 Console.WriteLine("\n\n\n\n\n\n\n\t\t\t\t\t\tThank You!");
  57.                 //Console.ReadKey();
  58.                 Thread.Sleep(1000);
  59.             }
  60.         }
  61.     }
  62. }
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement