-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemBlok.cpp
176 lines (151 loc) · 3.25 KB
/
schemBlok.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#include <iostream>
using namespace std;
void exOne(){
const int size = 6;
double arr[size];
int count = 0;
while(count < size){
double userIn;
cin >> userIn;
if(userIn >=0 && userIn <= 10){
arr[count] = userIn;
count++;
}
}
for(int k = 0; k < size; k++){
cout << arr[k] << " ";
}
}
void exTwo(){
const int size = 5;
int arr1[size], arr2[size];
for (int i = 0; i < 5; i++) {
string input;
cin >> input;
bool valid = true;
for (char c : input) {
if (c < '0' || c > '9') {
valid = false;
break;
}
}
if (valid) {
arr1[i] = stoi(input);
}
else {
i--;
}
}
for (int i = 0; i < 5; i++) {
string input;
cin >> input;
bool valid = true;
for (char c : input) {
if (c < '0' || c > '9') {
valid = false;
break;
}
}
if (valid) {
arr2[i] = stoi(input);
}
else {
i--;
}
}
int key, j;
for (int i = 1; i < size; i++) {
key = arr1[i];
j = i - 1;
while (j >= 0 && arr1[j] > key) {
arr1[j + 1] = arr1[j];
j--;
}
arr1[j + 1] = key;
}
for (int i = 1; i < size; i++) {
key = arr2[i];
j = i - 1;
while (j >= 0 && arr2[j] > key) {
arr2[j + 1] = arr2[j];
j--;
}
arr2[j + 1] = key;
}
bool equal = true;
for (int i = 0; i <size ; ++i) {
if (arr1[i] != arr2[i]) {
equal = false;
break;
}
}
if (equal) {
cout << "Equal." << endl;
}
else {
cout << "Different." << endl;
}
}
void exThree(){
string romanNumeral;
int arabic = 0;
int lastValue = 0;
cin >> romanNumeral;
for (int i = romanNumeral.length() - 1; i >= 0; i--) {
char c = romanNumeral[i];
int value = 0;
switch(c) {
case 'I':
value = 1;
break;
case 'V':
value = 5;
break;
case 'X':
value = 10;
break;
case 'L':
value = 50;
break;
case 'C':
value = 100;
break;
case 'D':
value = 500;
break;
case 'M':
value = 1000;
break;
default:
cout << "Wrong input data"<< endl;
break;
}
if (value < lastValue) {
arabic -= value;
} else {
arabic += value;
}
lastValue = value;
}
int arabicNumeral = arabic;
cout << "Converted " << romanNumeral << " to "<<arabicNumeral << endl;
}
int main(){
int task;
cin >> task;
switch (task)
{
case 1:
exOne();
break;
case 2:
exTwo();
break;
case 3:
exThree();
break;
default:
break;
}
return 0;
}