-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlab1_1.cpp
44 lines (34 loc) · 1.09 KB
/
lab1_1.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
39
40
41
42
43
44
#include <iostream>
#include <string>
int main()
{
////////////////////////////////////
int i = -100;
unsigned int u = 100;
char c = 'a';
float f = 1.4;
bool b = false;
double d = 1.134;
std::string str = "some string";
////////////////////////////////////
std::cout << i << std::endl;
std::cout << f << std::endl;
std::cout << str << std::endl;
////////////////////////////////////
int num = 0;
num = i * 100 + -32 - i;
std::cout << num << std::endl;
////////////////////////////////////
std::string name;
std::cin >> name;
std::string prefix = "Hello, ";
std::string message = prefix + name + "!";
std::cout << message << std::endl;
////////////////////////////////////
std::cout << "sizeof(i) = " << sizeof(i) << std::endl;
std::cout << "sizeof(c) = " << sizeof(c) << std::endl;
std::cout << "sizeof(d) = " << sizeof(d) << std::endl;
std::cout << "sizeof(char) = " << sizeof(char) << std::endl;
std::cout << "sizeof(unsigned int) = " << sizeof(unsigned int) << std::endl;
return 0;
}