Advertisement
Isti115

Isti számkitalálós programja

Sep 24th, 2012
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.60 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ProgSzak
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             bool nyert = false;
  14.             int szamlalo = 0;
  15.             int tulnagy = 0;
  16.             int tulkicsi = 0;
  17.  
  18.             Random rand = new Random(System.DateTime.Now.Millisecond);
  19.  
  20.             Console.WriteLine("Tippelj!");
  21.  
  22.             int gondoltSzam = rand.Next(1000);
  23.  
  24.             do
  25.             {
  26.                 int tipp = Convert.ToInt32(Console.ReadLine());
  27.                 szamlalo++;
  28.  
  29.                 if (tipp > gondoltSzam)
  30.                 {
  31.                     Console.WriteLine("Túl nagy!");
  32.                     tulnagy++;
  33.                 }
  34.  
  35.                 else if (tipp < gondoltSzam)
  36.                 {
  37.                     Console.WriteLine("Tul kicsi!");
  38.                     tulkicsi++;
  39.                 }
  40.  
  41.                 else if (tipp == gondoltSzam)
  42.                 {
  43.                     Console.ForegroundColor = ConsoleColor.Green;
  44.                     Console.WriteLine();
  45.                     Console.WriteLine("Pontosan!");
  46.                     nyert = true;
  47.                 }
  48.             }
  49.             while (!nyert);
  50.  
  51.             Console.WriteLine(szamlalo.ToString() + " probalkozasbol sikerult!");
  52.             szamlalo--;
  53.             Console.WriteLine("(a tippjeid " + ((tulkicsi * 100) / szamlalo) + "%-a volt tul kicsi, es " + ((tulnagy * 100) / szamlalo) + "%-a volt tul nagy!)");
  54.             Console.ReadKey();
  55.         }
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement