Lädt...


🔧 Operators (if, else if, else, ternary operator, switch)


Nachrichtenbereich: 🔧 Programmierung
🔗 Quelle: dev.to

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");
}

switchda

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";
}
...

🔧 Operators (if, else if, else, ternary operator, switch)


📈 71.12 Punkte
🔧 Programmierung

🔧 Operators (if, else if, else, ternary operator, switch)


📈 71.12 Punkte
🔧 Programmierung

🔧 20. Operators (if, else if, else, ternary operator, switch)


📈 71.12 Punkte
🔧 Programmierung

🔧 Operators:If,else if,else,ternary operator,switch


📈 71.12 Punkte
🔧 Programmierung

🔧 Operators(if, else if, else, ternary operator, switch)


📈 71.12 Punkte
🔧 Programmierung

🔧 5. Operators(if, else if, else, ternary operator, switch)


📈 71.12 Punkte
🔧 Programmierung

🔧 5.Operators (if, else if, else, ternary operator, switch)


📈 71.12 Punkte
🔧 Programmierung

🔧 Operators (if,else if,ternary operator,switch)


📈 60.68 Punkte
🔧 Programmierung

🔧 5. Operators(if, else if, ternary operator, switch)


📈 60.68 Punkte
🔧 Programmierung

🔧 28.0perators (if, else if, else, ternary operator, switch)


📈 59 Punkte
🔧 Programmierung

🔧 20. Operators( if, else if, else, ternaty operator, switch)


📈 49.29 Punkte
🔧 Programmierung

🔧 Python Ternary Operator – Conditional Operators in Python


📈 45.29 Punkte
🔧 Programmierung

🔧 Why a Ternary Operator is not a Conditional Operator in JS


📈 44.51 Punkte
🔧 Programmierung

🔧 Don't nest ternary operators. Please!


📈 33.95 Punkte
🔧 Programmierung

🔧 Unary, Binary, and Ternary Operators in JavaScript – Explained with Examples


📈 33.95 Punkte
🔧 Programmierung

🔧 Read This if You Hate Ternary Operators


📈 33.95 Punkte
🔧 Programmierung

🔧 Read This if You Hate Ternary Operators


📈 33.95 Punkte
🔧 Programmierung

🔧 Ternary Operator in JS: Everything you need to know


📈 33.17 Punkte
🔧 Programmierung

🔧 Mastering the JavaScript Ternary Operator: A Comprehensive Guide


📈 33.17 Punkte
🔧 Programmierung

🔧 How to Write Cleaner JavaScript Code with The Ternary Operator


📈 33.17 Punkte
🔧 Programmierung

🔧 Delphi's Ternary Trick: IfThen vs. C's Conditional Operator


📈 33.17 Punkte
🔧 Programmierung

🔧 What is The Ternary Operator In JavaScript ?


📈 33.17 Punkte
🔧 Programmierung

🔧 Short-Circuiting Conditions in JavaScript: The Ternary Operator ES6


📈 33.17 Punkte
🔧 Programmierung

🔧 If to be or not to be is the question, ternary operator is the answer


📈 33.17 Punkte
🔧 Programmierung

🔧 How to Use the Ternary Operator in JavaScript – Explained with Examples


📈 33.17 Punkte
🔧 Programmierung

🔧 JavaScript Ternary Operator – Syntax and Example Use Case


📈 33.17 Punkte
🔧 Programmierung

🔧 Quick Tip: How to Use the Ternary Operator in JavaScript


📈 33.17 Punkte
🔧 Programmierung

🔧 If, Else, Else If, and Switch JavaScript Conditional Statement


📈 25.83 Punkte
🔧 Programmierung

🔧 34.Operators (Bitwise Operators)


📈 24.24 Punkte
🔧 Programmierung

🔧 Operators (Logical Operators)


📈 24.24 Punkte
🔧 Programmierung

🔧 33.Operators (Logical Operators)


📈 24.24 Punkte
🔧 Programmierung

🔧 33.Operators (Logical Operators)


📈 24.24 Punkte
🔧 Programmierung

🔧 JavaScript Operators and Operator Precedence – Beginner's Guide


📈 23.46 Punkte
🔧 Programmierung

matomo