Оператор If
Оператор if
є основним будівельним блоком потоку управління у більшості мов програмування. Він дозволяє програмі приймати рішення і виконувати різні блоки коду на основі того, чи є задана умова true або false. Ідея операторів if
проста: Якщо умова виконується, зробіть щось, інакше - не робіть.
if.h
1234if (condition) { // Code to be executed if the condition is true }
Here is the if
statement syntax:
if (condition) {
// Code to be executed if the condition is true
}
main.cpp
123456789101112#include <iostream> int main() { int age = 33; // declaring and initializing a variable if (age >= 18) // checking whether the age is greater or equal to 18 { // if so, output the message std::cout << "You are an adult" << std::endl; } }
If you have an if
statement with only one statement to be executed when the condition is true, you can omit the curly braces { }
. For example:
if (condition)
{
statement;
}
with_braces.h
without_braces.h
1234if (condition) { statement; }
Swipe to start coding
- Check if a two dimensional square with
x
(length) andy
(height) can fit into another square with dimensionsx1
(length) andy1
(height). - Output
Can fit
in console if it can.
Once you've completed this task, click the button below the code to check your solution.
Рішення
solution.cpp
Дякуємо за ваш відгук!
single
Запитати АІ
Запитати АІ
Запитайте про що завгодно або спробуйте одне із запропонованих запитань, щоб почати наш чат
Awesome!
Completion rate improved to 7.69
Оператор If
Свайпніть щоб показати меню
Оператор if
є основним будівельним блоком потоку управління у більшості мов програмування. Він дозволяє програмі приймати рішення і виконувати різні блоки коду на основі того, чи є задана умова true або false. Ідея операторів if
проста: Якщо умова виконується, зробіть щось, інакше - не робіть.
if.h
1234if (condition) { // Code to be executed if the condition is true }
Here is the if
statement syntax:
if (condition) {
// Code to be executed if the condition is true
}
main.cpp
123456789101112#include <iostream> int main() { int age = 33; // declaring and initializing a variable if (age >= 18) // checking whether the age is greater or equal to 18 { // if so, output the message std::cout << "You are an adult" << std::endl; } }
If you have an if
statement with only one statement to be executed when the condition is true, you can omit the curly braces { }
. For example:
if (condition)
{
statement;
}
with_braces.h
without_braces.h
1234if (condition) { statement; }
Swipe to start coding
- Check if a two dimensional square with
x
(length) andy
(height) can fit into another square with dimensionsx1
(length) andy1
(height). - Output
Can fit
in console if it can.
Once you've completed this task, click the button below the code to check your solution.
Рішення
solution.cpp
Дякуємо за ваш відгук!
Awesome!
Completion rate improved to 7.69single