

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
20 questions
BUDGETING
Presentation
•
University
19 questions
addie
Presentation
•
University
21 questions
C++ if switch
Presentation
•
University
23 questions
Derivada 2da parte
Presentation
•
University
17 questions
Pseudocode, Flowchart, Trasing Feedback
Presentation
•
University
20 questions
Articles
Presentation
•
University
20 questions
TECHCROMA 2K24 - Code Change Filteration Process.
Presentation
•
University
Popular Resources on Wayground
6 questions
Secondary Safety Quiz
Presentation
•
9th - 12th Grade
10 questions
MyPath Diagnostic Overview
Presentation
•
6th - 8th Grade
20 questions
Lab Safety Quiz
Quiz
•
6th Grade
21 questions
Continents and Oceans
Quiz
•
6th Grade
20 questions
Adding and Subtracting Decimals
Quiz
•
5th Grade
20 questions
Parts of Speech
Quiz
•
5th Grade
16 questions
Subject & Predicate
Quiz
•
5th Grade
21 questions
Lab Safety
Quiz
•
10th Grade
Discover more resources for Computers
20 questions
Disney Trivia
Quiz
•
University
20 questions
Brand Trivia
Quiz
•
9th Grade - University
10 questions
Would you rather...
Quiz
•
KG - University
21 questions
Mapa países hispanohablantes
Quiz
•
1st Grade - University
10 questions
Spanish Greetings and Goodbyes!
Presentation
•
6th Grade - University
12 questions
CE 2b Early Documents Review
Quiz
•
7th Grade - University
30 questions
Multiplying and Dividing Integers
Quiz
•
6th Grade - University
13 questions
Back to School
Quiz
•
KG - University