0

C++

7.2 не понимаю где ошибка

5th Apr 2021, 8:35 AM
Elrim Ec Khant
Elrim Ec Khant - avatar
2 Answers
+ 2
Read this carefully:- #include <iostream> using namespace std; int main() { int a=2; int b=3; cin>>a; cin>>b; int sum = a + b; cout << "find the sum of two nuber " << sum<<endl ; return 0; } https://code.sololearn.com/c2d7Xa0Q53pz/?ref=app
5th Apr 2021, 9:19 AM
SAN
SAN - avatar
0
#include <iostream> using namespace std; int main() { int a= 1; int b= 4; int sum = a + b; cout << "find the sum of two nuber "; cin>>sum>>endl ; return 0; }
5th Apr 2021, 8:35 AM
Elrim Ec Khant
Elrim Ec Khant - avatar