Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ProgSzak
- {
- class Program
- {
- static void Main(string[] args)
- {
- bool nyert = false;
- int szamlalo = 0;
- int tulnagy = 0;
- int tulkicsi = 0;
- Random rand = new Random(System.DateTime.Now.Millisecond);
- Console.WriteLine("Tippelj!");
- int gondoltSzam = rand.Next(1000);
- do
- {
- int tipp = Convert.ToInt32(Console.ReadLine());
- szamlalo++;
- if (tipp > gondoltSzam)
- {
- Console.WriteLine("Túl nagy!");
- tulnagy++;
- }
- else if (tipp < gondoltSzam)
- {
- Console.WriteLine("Tul kicsi!");
- tulkicsi++;
- }
- else if (tipp == gondoltSzam)
- {
- Console.ForegroundColor = ConsoleColor.Green;
- Console.WriteLine();
- Console.WriteLine("Pontosan!");
- nyert = true;
- }
- }
- while (!nyert);
- Console.WriteLine(szamlalo.ToString() + " probalkozasbol sikerult!");
- szamlalo--;
- Console.WriteLine("(a tippjeid " + ((tulkicsi * 100) / szamlalo) + "%-a volt tul kicsi, es " + ((tulnagy * 100) / szamlalo) + "%-a volt tul nagy!)");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement