1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Random rastgele = new Random(); int sayi = rastgele.Next(100); int sayac = 1; while (true) { Console.WriteLine("Tahmin girin: "); int tahmin = Convert.ToInt32(Console.ReadLine()); if (tahmin > sayi) { Console.WriteLine("Tahminin büyük"); } else if (tahmin < sayi) { Console.WriteLine("Tahmin küçük"); } else { Console.WriteLine("Tebrikler, {0} tahminde bildin.", sayac); break; } sayac++; } } } } |