Operators (if, else if, else, ternary operator, switch)
Firdavs Mukhsimov
Posted on October 11, 2024
a) Quyidagi kodda if, else if, else qismi qanday ishlaydi?
int x = 10;
if (x < 5)
{
Console. WriteLine("Less than 5");
}
else if (x == 10)
{
Console. WriteLine("Equal to 10");
}
else
{
Console WriteLine( "Greater than 5");
}
Harbiriga bitalab kirib tekshirib chiqadi
b)Ternary operatorning sintaksisi ganday? Misol keltiring.
using System;
class Program
{
static void Main()
{
int age = 20;
string result = (age >= 18) ? "Voyaga yetgan" : "Voyaga yetmagan";
Console.WriteLine(result);
}
}
c)Quyidagi kodda switch qismida qaysi natija chiqadi?
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;
Javob == Wednesday
💖 💪 🙅 🚩
Firdavs Mukhsimov
Posted on October 11, 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