-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.cpp
38 lines (30 loc) · 842 Bytes
/
variable.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include<iostream>
int main()
{
//int(whole numbers)
int x; //declaration
x = 5.5; //initialization
int y = 6; //declaration and initialization
int sum =x+y;
std::cout<<x << '\n'; //5
std::cout<<y << '\n'; //6
std::cout<<sum << '\n'; //11
std::cout<<x << '\n'; //5
//double(including decimals)
double z = 5.5;
std::cout<<z<<'\n'; //5.5
//char(single character)
char grade = 'A';
char initial = 'S';
char currency = '$';
std::cout<<initial<<'\n'; //S
//booleans(true or false)
bool is_true = true;
bool is_false = false;
std::cout<<is_true<<'\n'; //1
std::cout<<is_false<<'\n'; //0
//strings (objects that represent a sequence of characters)
std::string name = "Saksham";
std::cout<<"Hello! "<<name<<'\n'; //Saksham
return 0;
}