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Розуміння змінних

Змінні відіграють важливу роль у зберіганні та маніпулюванні даними. Процес створення змінної включає два основні кроки: оголошення та ініціалізація.

cpp

main

cpp

example

copy
12345678910
#include <iostream> int main() { // Declaration is process of introducing a variable and giving it a name int x; // Initialization is the assigning a value to a declared variable. x = 25; }

Також при оголошенні декількох змінних одного типу даних, зручно вказувати тип даних лише один раз.

Конвенції іменування

Вибір значущих та описових імен для змінних є важливим для написання підтримуваного та зрозумілого коду.

h

naming

copy
1
int n; // Bad naming
h

naming

copy
1
int numberOfStudents; // Good naming

Variable names in C++ can consist of letters and numbers but cannot start with numbers, nor can they contain spaces or arithmetic operators. Also avoid using names that coincide with reserved keywords. This can lead to compilation errors.

cpp

main

copy
123456789
#include <iostream> int main() { int int = 25; // Uses reserved keyword int email!number = 25; // Contains a special character int my age = 37; // Contains space int 121A = 121; // Starts with digit }
What is the primary purpose of using variables in programming?

What is the primary purpose of using variables in programming?

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

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

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

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

Секція 3. Розділ 2
some-alt