0
Can you help me ?
https://sololearn.com/compiler-playground/cClTYPQ83i1f/?ref=app
3 Respuestas
+ 2
Alban look closely at the cin statement. What do you see that is missing?
int valeurs, valeurs1, valeurs2;
cin>>valeurs>>valeurs>>valeurs;
+ 1
No I don't see it what is it ?
0
The statement is taking three inputs and streaming all three values into the same variable, valeurs.
Was your intention instead to fill the values into the three variables? Then add the missing numbers in the variable names, like this:
cin>>valeurs>>valeurs1>>valeurs2;