Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void check_exam() {
- int a1, a2, a3, a4, a5;
- double aver = 0;
- cout << "Введите 5 оценок через пробел: ";
- cin >> a1 >> a2 >> a3 >> a4 >> a5;
- if (a1 < 0 || a1 > 5 ||
- a2 < 0 || a2 > 5 ||
- a3 < 0 || a3 > 5 ||
- a4 < 0 || a4 > 5 ||
- a5 < 0 || a5 > 5 ) {
- cout << "не корректный ввод" << endl;
- return;
- }
- aver = (a1 + a2 + a3 + a4 + a5) / 5.0;
- cout << "Средний балл: " << aver << endl;
- if (aver >= 3.5) {
- cout << "Вы допущены.";
- }
- else {
- cout << "Сожалеем. Вы не допущены.";
- }
- cout << endl;
- }
- void check_exam2() {
- int ball;
- double aver = 0;
- cout << "Введите 5 оценок,нажимая Enter" << endl;
- cin >> ball;
- aver = aver + ball;
- cin >> ball;
- aver = aver + ball;
- cin >> ball;
- aver = aver + ball;
- cin >> ball;
- aver = aver + ball;
- cin >> ball;
- aver = aver + ball;
- aver = aver / 5.0;
- cout << "Средний балл: " << aver << endl;
- if (aver > 3.5) {
- cout << "Вы допущены.";
- }
- else {
- cout << "Сожалеем. Вы не допущены.";
- }
- cout << endl;
- }
- void do_calc() {
- cout << "Введите выражение в формате\n"
- << "[число оператор число] и нажмие Enter\n";
- double x, y;
- char op;
- cin >> x >> op >> y;
- system("cls");
- cout << x << " " << op << " " << y << " = ";
- if (op == '+') {
- cout << x + y;
- }
- else if (op == '-') {
- cout << x - y;
- }
- else if (op == '*') {
- cout << x * y;
- }
- else if (op == '/') {
- //if (y != 0) {
- //if ((y > 1.0e-6) || (y < -1.0e-6)) {
- if (abs(y) > 1.0e-6) {
- cout << x / y;
- }
- else {
- cout << "\nОшибка делитель очень мал.";
- }
- }
- else {
- cout << "\nОшибка при интерпритации оператора";
- }
- cout << endl;
- }
- void abs() {
- cout << "Hello " << endl;
- }
- void test_operators() {
- int x = 5;
- int res = 1;
- res *= x;
- x -= 1;
- res *= x;
- x -= 1;
- res *= x;
- x -= 1;
- res *= x;
- x -= 1;
- cout << res << " " << x << endl;
- }
- int main() {
- setlocale(LC_ALL, "ru");
- //check_exam2();
- //abs();
- //do_calc();
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement