+ 3
Help find error(c++)
Please, help me find error. There is the code: #include <iostream> using namespace std; int main(); { int c = 10; int a = 60; int b = 20; int w; cin w; if (w>10) cout << "Try again"; if (w<10) cout << "You win"; cout << c a b w; return 0; }
4 Answers
+ 4
cin >> w;
cout << c << a << b << w;
+ 10
Always use << and >>
0
Thanks!
0
Okay, thanks