10:53: warning: statement has no effect [-Wunused-value]
11:1: error: 'Cin' was not declared in this scope
13:7: error: expected ';' before string constant
13:36: warning: statement has no effect [-Wunused-value]
14:8: error: '_getch' was not declared in this scope
Код:
Код:
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "RUS");
int a, b, c;
b = 2019;
cout « "Введите год рождения»\n";
Cin » a;
c = b - a;
cout«"Ваш возраст »"«c;
_getch();
return 0;
}