-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlab3_1.cpp
94 lines (78 loc) · 2.07 KB
/
lab3_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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <cstdlib>
#include <iostream>
#include <string>
#include <vector>
int main()
{
// static array
{
int array[10] = {0};
for (int i = 0; i < 10; ++i)
{
array[i] = rand();
}
for (int i = 0; i < 10; ++i)
{
std::cout << array[i] << " ";
}
std::cout << std::endl;
}
// vector
{
int N = 0;
std::cin >> N;
std::vector<int> v1(N);
for (int i = 0; i < v1.size(); ++i)
{
v1[i] = rand();
}
for (int i = 0; i < v1.size(); ++i)
{
std::cout << v1[i] << " ";
}
std::cout << std::endl;
}
// vector
{
int N = 0;
std::cin >> N;
std::vector<int> v1;
for (int i = 0; i < N; ++i)
{
v1.push_back(rand());
}
for (int i = 0; i < v1.size(); ++i)
{
std::cout << v1[i] << " ";
}
std::cout << std::endl;
}
// vector
{
std::vector<double> v1 = {1.2, 2.5, 3.4, 6.1};
double summ = 0;
for (int i = 0; i < v1.size(); ++i)
{
summ += v1[i];
}
std::cout << summ << std::endl;
}
// string
{
// Сможешь ли ты законсервировать консервы так,
// как может законсервировать консервы работник консервного завода?
std::string str = "Can you can a can as a canner can can a can?";
std::size_t len = str.size();
std::cout << "string length is " << len << std::endl;
if (len == str.length())
std::cout << "str.size() is equal str.length()" << std::endl;
std::size_t index = str.find("can");
std::cout << index << std::endl;
index = str.find("abracadabra");
if (index == std::string::npos)
std::cout << "abracadabra not found" << std::endl;
str.replace(0, 3, "CAN");
std::cout << str << std::endl;
}
return 0;
}