|
|
back to boardWhat is wrong? Что не так? // С++ Posted by Kelife 7 Jun 2015 21:35 #include <iostream> using namespace std; int main() { int a, b; cout << "Enter 'a': "; cin >> a; cout << '\n'; cout << "Enter 'b': "; cin >> b; cout <<'\n'; cout << a + b; return 0; } Edited by author 07.06.2015 21:38 Edited by author 07.06.2015 21:38 Re: What is wrong? Что не так? // С++ Posted by Kirino 22 Jun 2015 10:59 Don't output "Enter a" or something like that Re: What is wrong? Что не так? // С++ Posted by Kirino 22 Jun 2015 10:59 Don't output "Enter a" or something like that Re: What is wrong? Что не так? // С++ Значения a и b вводятся через пробел, поэтому надо использовать только cin >> a >> b; |
|
|