

C++ Variables
Presentation
•
Computers
•
University
•
Practice Problem
•
Hard
Kittisay SENGTHONG
Used 46+ times
FREE Resource
13 Slides • 13 Questions
1
C++ Variables
ຕົວປ່ຽນຂອງພາສາ C++

2
C++ Variables
Variables are containers for storing data values.
In C++, there are different types of variables (defined with different keywords), for example:
3
Multiple Choice
ຕົວປ່ຽນແມ່ນຫຍັງ
ຂໍ້ມູນ
ບ່ອນຈັດເກັບຂໍ້ມູນ
ປະເພດຂໍ້ມູນ
ຈຳນວນ
4
C++ Variables
int - stores integers (whole numbers), without decimals, such as 123 or -123
double - stores floating point numbers, with decimals, such as 19.99 or -19.99
char - stores single characters, such as 'a' or 'B'. Char values are surrounded by single quotes
string - stores text, such as "Hello World". String values are surrounded by double quotes
bool - stores values with two states: true or false
5
Multiple Choice
ຂໍ້ໃດຕໍ່ໄປນີ້ແມ່ນປະເພດຂອງຕົວປ່ຽນຂອງພາສາ C++
data
type
string
6
Declaring (Creating) Variables
To create a variable, you must specify the type and assign it a value:
7
Fill in the Blanks
Type answer...
8
Fill in the Blanks
Type answer...
9
Syntax variable C++
Where type is one of C++ types (such as int), and variable is the name of the variable (such as x or myName). The equal sign is used to assign values to the variable.
Create a variable called myNum of type int and assign it the value 15:
10
Multiple Choice
ຂໍ້ໃດຕໍ່ໄປນີ້ແມ່ນການສ້າງຕົວປ່ຽນທີ່ຖືກຕ້ອງ
int a=50;
int a=7
int a="a"
int a="a";
11
Syntax Variables
You can also declare a variable without assigning the value, and assign the value later:
12
Fill in the Blanks
Type answer...
13
Syntax Variables
Note that if you assign a new value to an existing variable, it will overwrite the previous value:
14
Fill in the Blanks
Type answer...
15
Other Types
int myNum = 5; // Integer (whole number without decimals)
double myFloatNum = 5.99; // Floating point number
char myLetter = 'D'; // Character
string myText = "Hello"; // String (text)
bool myBoolean = true; // Boolean (true or false)
16
Multiple Choice
ຂໍ້ໃດຕໍ່ໄປນີ້ແມ່ນການກຳນົດ ຄ່າໃຫ້ກັບຕົວປ່ຽນ ທີ່ ບໍ່ຖືຕ້ອງ
int a=50;
double b=55.6;
bool a=50;
string a="love";
17
C++ Declare Multiple Variables
To declare more than one variable of the same type ( , ) use a comma-separated list:
int x = 5, y = 6, z = 50;
cout << x + y + z;
18
Fill in the Blanks
Type answer...
19
C++ Identifiers
All C++ variables must be identified with unique names.
These unique names are called identifiers.
Identifiers can be short names (like x and y) or more descriptive names (age, sum, totalVolume).
Note: It is recommended to use descriptive names in order to create understandable and maintainable code:
20
Multiple Select
ຂໍ້ໃດຕໍ່ໄປນີ້ເປັນການ ຕັ້ງຊື່ຕົວປ່ຽນທີ່ ຖືກຕ້ອງ
name surname
int
reSult
total
21
C++ Identifiers
how to create Variables is very good
22
C++ Identifiers
Names can contain letters, digits and underscores
Names must begin with a letter or an underscore (_)
Names are case sensitive (myVar and myvar are different variables)
Names cannot contain whitespaces or special characters like !, #, %, etc.
Reserved words (like C++ keywords, such as int) cannot be used as names
23
Multiple Select
ຂໍ້ໃດຕໍ່ໄປນີ້ເປັນການ ຕັ້ງຊື່ຕົວປ່ຽນທີ່ ບໍ່ຖືກຕ້ອງ
name surname
_year
#data
sum
24
C++ Constants
When you do not want others (or yourself) to override existing variable values, use the const keyword (this will declare the variable as "constant", which means unchangeable and read-only):
25
Fill in the Blanks
Type answer...
26
Poll
ຫົວຂໍ້ໃດຕໍ່ໄປນີ້ ຍັງບໍ່ທັນເຂົ້າໃຈດີ ຫຼື ທີ່ຄິດວ່າຍາກ
C++ Variables
C++ Declare Multiple Variables
C++ Identifiers
C++ Constants
C++ Variables
ຕົວປ່ຽນຂອງພາສາ C++

Show answer
Auto Play
Slide 1 / 26
SLIDE
Similar Resources on Wayground
24 questions
Wiederholung
Presentation
•
KG
18 questions
TIPOS DE TEXTO
Presentation
•
University
19 questions
OOP Lesson 3
Presentation
•
University
23 questions
Proportions: word problems
Presentation
•
University
19 questions
Context Clues (Reading strategies)
Presentation
•
University
20 questions
The social stratification of (r) in New York City
Presentation
•
University
21 questions
Research Design
Presentation
•
University
20 questions
Linear Equations Review
Presentation
•
KG - University
Popular Resources on Wayground
10 questions
GPA Lesson
Presentation
•
9th - 12th Grade
7 questions
Albert Einstein
Quiz
•
3rd Grade
31 questions
Bridge A Review
Quiz
•
3rd Grade
6 questions
Blue Sue and Red Ruth
Quiz
•
3rd Grade
8 questions
(Day12 HW) Inverse Trig Ratios
Quiz
•
9th Grade
20 questions
Summer Geometry QUIZ (Week3)
Quiz
•
9th Grade
16 questions
Theme Practice
Quiz
•
7th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade