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

Зміст курсу

Вступ до C++

Вступ до C++

1. Початок роботи
2. Вступ до операторів
3. Змінні та типи даних
4. Вступ до потоку програм
5. Вступ до функцій

book
Прості оператори

Оператор присвоєння (=) використовується в програмуванні для присвоєння значення змінній. Синтаксис виглядає наступним чином:

Arithmetic operators are the most basic ones; they include well-known signs like addition (+), multiplication (*), subtraction (-), division (/), and modulo (%) for calculating the remainder of a division.

cpp

main

copy
123456789101112
#include <iostream> int main() { // `std::endl` moves each `std::cout` output to a new line // You can try removing `std::endl` to see how the outputs appear on the same line std::cout << 5 + 5 << std::endl; std::cout << 5 - 5 << std::endl; std::cout << 5 / 5 << std::endl; std::cout << 5 * 5 << std::endl; std::cout << 5 % 5 << std::endl; }

Each operator has its unique function, and all of them can be divided into categories: unary, binary, and ternary. Arithmetic operators are binary because they require two operands to achive something.

cpp

main

copy
123456789
#include <iostream> int main() { // 5 (first operand) // - (operation) // 3 (second operand) std::cout << 5 - 3 << std::endl; }

Removing an operand from an operator that requires it will result in an error, as the program expects the correct number of operands to perform the operation.

1. What are operators in programming?
2. What does a binary operator require?
3. What happens if you use an operator without the correct number of operands?
What are operators in programming?

What are operators in programming?

Виберіть правильну відповідь

What does a binary operator require?

What does a binary operator require?

Виберіть правильну відповідь

What happens if you use an operator without the correct number of operands?

What happens if you use an operator without the correct number of operands?

Виберіть правильну відповідь

Все було зрозуміло?

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

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

Секція 2. Розділ 1
We're sorry to hear that something went wrong. What happened?
some-alt