Написать тест на языке программирования с++: пример: 2+2=4? да - верно нет - не верно 2 вопроса.

alexfuerte07 alexfuerte07    3   21.07.2019 16:10    0

Ответы
Int main ...
int a,b,c;
cout <<" 2+2=4? 1-да, 2 - нет " << endl;
cin>>a;
if (a == 1) { cout <<" Верно " << endl;}
if (a==2) { cout <<" Ошибка " << endl;}
cout <<" 3+2=5? 1-да, 2 - нет " << endl;
cin>>a;
if (a == 1) { cout <<" Верно " << endl;}
if (a==2) { cout <<" Ошибка " << endl;}
system ("pause");
return 0;
ПОКАЗАТЬ ОТВЕТЫ
hac20 hac20  03.10.2020 09:43
#include <iostream>
#include <string>
#include <conio.h>
#include <Windows.h>
using namespace std;
void main()
{
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
char answer[3];
setlocale(0, "");
cout << "2+2=4 ?" << endl;
cin >> answer;
if ((answer[0] == 'Д') && (answer[1] == 'а'))
 cout << "Верно" << endl;
 else cout << "Не верно" << endl;
cout << "5+5=10 ?" << endl;
cin >> answer;
if ((answer[0] == 'Д') && (answer[1] == 'а'))
 cout << "Верно" << endl;
 else cout << "Не верно" << endl;
 _getch();
}

P.S в свойства консоли надо поменять  шрифт на "Consolas"
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика