initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

17
C++/lesson1/task3.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <iostream>
int main() {
int min = 6;
for (int i = 0; i < 5; i++) {
int value;
std::cin >> value;
if (value < min) {
min = value;
}
}
if (min < 4) {
std::cout << "Could be better\n";
} else {
std::cout << "Great!\n";
}
}