+ 1
How to insert user input in array
Iam trying in my project properly but it shows: compiler error https://code.sololearn.com/cD0Mf5TAM660/?ref=app
3 ответов
+ 5
Change
cin << a;
cin << b;
cin << c;
To
cin >> a;
cin >> b;
cin >> c;
+ 4
Make a C++ project here and copy/paste your project there. Then attach it to your post. Otherwise, it's hard to predict what's going on.
0
Ok now