Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Оператор If | Вступ до Умовних Операторів
C++ Умовні оператори
course content

Зміст курсу

C++ Умовні оператори

C++ Умовні оператори

1. Вступ до Умовних Операторів
2. Практика умовного потоку управління
3. Поглиблені теми

book
Оператор If

Оператор if є основним будівельним блоком потоку управління у більшості мов програмування. Він дозволяє програмі приймати рішення і виконувати різні блоки коду на основі того, чи є задана умова true або false. Ідея операторів if проста: Якщо умова виконується, зробіть щось, інакше - не робіть.

h

if

copy
1234
if (condition) { // Code to be executed if the condition is true }

Here is the if statement syntax:

cpp

main

copy
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:

h

with_braces

h

without_braces

copy
1234
if (condition) { statement; }
Завдання
test

Swipe to show code editor

  • Check if a two dimensional square with x (length) and y (height) can fit into another square with dimensions x1 (length) and y1 (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.

Рішення

cpp

solution

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 3
toggle bottom row

book
Оператор If

Оператор if є основним будівельним блоком потоку управління у більшості мов програмування. Він дозволяє програмі приймати рішення і виконувати різні блоки коду на основі того, чи є задана умова true або false. Ідея операторів if проста: Якщо умова виконується, зробіть щось, інакше - не робіть.

h

if

copy
1234
if (condition) { // Code to be executed if the condition is true }

Here is the if statement syntax:

cpp

main

copy
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:

h

with_braces

h

without_braces

copy
1234
if (condition) { statement; }
Завдання
test

Swipe to show code editor

  • Check if a two dimensional square with x (length) and y (height) can fit into another square with dimensions x1 (length) and y1 (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.

Рішення

cpp

solution

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 3
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt