If-else
Sobirjonov O'tkirbek
using System;
namespace MyProgram
{
class Program
{
static void Main(string[] args)
{
bool meningBirQopPulim = false;
if(meningBirQopPulim == true)
{
//Yoqib yuborgan bo'lar edim
}
}
}
}
using System;
namespace MyProgram
{
class Program
{
static void Main(string[] args)
{
bool meningBirQopPulim = true;
if(meningBirQopPulim == true)
{
Console.WriteLine("Yoqib yuborish kerak");
}
}
}
}

Last updated
Was this helpful?