Operators (if, else if, else, ternary operator, switch)
Firdavs Mukhsimov
Posted on October 14, 2024
**a) Quyidagi kodning natijasini ayting: **
int temperature = 30;
if(temperature > 25)
{
Console.WriteLine("Hot");
}
else if(temperature > 15)
{
Console.WriteLine("Warm");
}
else
{
Console.WriteLine("Cold");
}
Javob: Hot.
**b) Switch operatoridan foydalanib, quyidagi if-else kodini switch operatoriga o'zgartiring: *
*
int day = 3;
if(day == 1)
{
Console.WriteLine("Monday");
}
else if(day == 2)
{
Console.WriteLine("Tuesday");
}
else if(day == 3)
{
Console.WriteLine("Wednesday");
}
else
{
Console.WriteLine("Invalid day");
}
*Javob: *
int day = 3;
switch(day)
{
case 1:
Console.WriteLine("Monday");
break;
case 2:
Console.WriteLine("Tuesday");
break;
case 3:
Console.WriteLine("Wednesday");
break;
default:
Console.WriteLine("Invalid day");
break;
}
**c) Ternary operator yardamida quyidagi kodni qisqartiring: **
int a = 10;
string result;
if(a > 5)
{
result = "Greater than 5";
}
else
{
result = "Less than or equal to 5";
}
*Javob: *
int a = 10;
string result = (a > 5) ? "Greater than 5" : "Less than or equal to 5";
💖 💪 🙅 🚩
Firdavs Mukhsimov
Posted on October 14, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
watercooler Why does a reboot make your PC run SO much faster than running all the cleaning tools you can possibly imagine?
November 30, 2024