Break
Sobirjonov O'tkirbek


Last updated
Was this helpful?
Was this helpful?
using System;
namespace boks
{
class Program
{
static void Main(string[] args)
{
int hakamSana = 0;
while (true)
{
hakamSana++;
Console.WriteLine(hakamSana);
if (hakamSana == 10) break;
}
}
}
}using System;
namespace boks
{
class Program
{
static void Main(string[] args)
{
int hakamSana = 0;
while (true)
{
int secund = 0;
while (true)
{
secund++;
if(secund > 3 * 60)
{
Console.WriteLine("Raund Tugadi!");
break;
}
}
}
}
}
}using System;
namespace boks
{
class Program
{
static void Main(string[] args)
{
string EngZorBokschi = "Bill Geyts";
switch (EngZorBokschi)
{
case "Bill Geyts":Console.WriteLine("Bill Geyts Milliarder"); break;
case "Ozodbek Nazarbekov": Console.WriteLine("U Qo'shiqchi"); break;
case "Ferrari": Console.WriteLine("U mashina"); break;
case "Mayk Tayson": Console.WriteLine("Endi U qaridi"); break;
case "Shahram G'iyosov": Console.WriteLine("To'g'ri"); break;
default: Console.WriteLine("....");
break;
}
}
}
}