Alice (KolomeytsevDA) 1 год назад
Родитель d9705f455f 01c278e574
Сommit b455e180df

5
.vscode/settings.json поставляемый

@ -57,5 +57,8 @@
"C_Cpp_Runner.useLeakSanitizer": false, "C_Cpp_Runner.useLeakSanitizer": false,
"C_Cpp_Runner.showCompilationTime": false, "C_Cpp_Runner.showCompilationTime": false,
"C_Cpp_Runner.useLinkTimeOptimization": false, "C_Cpp_Runner.useLinkTimeOptimization": false,
"C_Cpp_Runner.msvcSecureNoWarnings": false "C_Cpp_Runner.msvcSecureNoWarnings": false,
"files.associations": {
"iostream": "cpp"
}
} }

@ -5,7 +5,7 @@ using namespace std;
int main() int main()
{ {
cout << "Enter A and B: "; cout << "Enter A and B: ";
int a, b; double a, b;
cin >> a >> b; cin >> a >> b;
cout << "A + B = " << a + b << '\n' cout << "A + B = " << a + b << '\n'
<< "A - B = " << a - b << '\n' << "A - B = " << a - b << '\n'

Загрузка…
Отмена
Сохранить