You are on page 1of 1

using System;

namespace _ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Random random=new Random();
int liczba = random.Next(0, 101);
int BIGtest = 6;
int pr00by = 1;
int test = 6;
Console.WriteLine("zgadnij liczbe od 1 do 100");
while (BIGtest==6)
{

int zgadula;
zgadula=Convert.ToInt32(Console.ReadLine());
if (zgadula<liczba)
{
Console.WriteLine("wieksza");
pr00by+=1;
}
if (zgadula>liczba)
{
Console.WriteLine("mniejsza" +
"");
pr00by+=1;
}
if (zgadula==liczba)
{
Console.WriteLine("zgadles po {0} probach, yipi",pr00by);
BIGtest += 1;
}
}
Console.ReadKey();
}

You might also like