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Типи Даних

При оголошенні змінної, потрібно вказати, який тип даних ми будемо зберігати в ній. Існують типи даних для легкого управління пам'яттю в кожній ситуації.

Data Type
int
short
float
double
char
bool
void

Numerical

These types are essential for storing numerical values and manipulating numeric data. We can split them into two groups: integers and decimals.

h

integers

h

decimals

copy
12
// examples of literal integers 5 100 30

Bool

Тип даних bool представляє два булеві значення: нуль інтерпретується як false і одиниця інтерпретується як true.

on = true = 1
off = false = 0

Char

The char data type is used to store individual characters, which can include letters, digits, punctuation marks, and special characters.

Void

The void data type represents the absence of a value. It is primarily used for functions that do not return any data. When a function is declared as void, it means the function performs an action but does not provide a result.

Note

The use and purpose of void will be explored further in the chapter about functions.

You can check the data type of certain expressions using the code below. Feel free to experiment with it.

cpp

main

copy
123456789
#include <iostream> #include <typeinfo> // Provides tools for type identification int main() { // `typeid().name()` gives you the type of expression // Replace `___` with a number, boolean (true/false), or character std::cout << "The data type is " << typeid(___).name() << std::endl; }
1. What does the int data type store?
2. What is the correct syntax for a `char` type?
What does the int data type store?

What does the int data type store?

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

What is the correct syntax for a `char` type?

What is the correct syntax for a char type?

Виберіть кілька правильних відповідей

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

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

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

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