Зміст курсу
C++ Умовні оператори
C++ Умовні оператори
Оператор If
Оператор if
є основним будівельним блоком потоку управління у більшості мов програмування. Він дозволяє програмі приймати рішення і виконувати різні блоки коду на основі того, чи є задана умова true або false. Ідея операторів if
проста: Якщо умова виконується, зробіть щось, інакше - не робіть.
if
if (condition) { // Code to be executed if the condition is true }
Here is the if
statement syntax:
main
#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:
with_braces
without_braces
if (condition) { statement; }
Swipe to show code editor
- 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
Дякуємо за ваш відгук!
Оператор If
Оператор if
є основним будівельним блоком потоку управління у більшості мов програмування. Він дозволяє програмі приймати рішення і виконувати різні блоки коду на основі того, чи є задана умова true або false. Ідея операторів if
проста: Якщо умова виконується, зробіть щось, інакше - не робіть.
if
if (condition) { // Code to be executed if the condition is true }
Here is the if
statement syntax:
main
#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:
with_braces
without_braces
if (condition) { statement; }
Swipe to show code editor
- 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
Дякуємо за ваш відгук!