6 Antwoorden
+ 4
Alban look closely at the cin statement. What do you see that is missing? int valeurs, valeurs1, valeurs2; cin>>valeurs>>valeurs>>valeurs;
9th Aug 2025, 7:36 AM
Brian
Brian - avatar
+ 1
The statement is taking three inputs and streaming all three values into the same variable, valeurs. Was your intention instead to fill all three variables? Then add the missing numbers in the variable names, like this: cin>>valeurs>>valeurs1>>valeurs2;
9th Aug 2025, 3:44 PM
Brian
Brian - avatar
+ 1
I see that is working now. Be sure to enter all three values in the pop-up prompt for input. Enter them like this: 1 2 3 Or like this: 1 2 3 Then press the Submit button.
9th Aug 2025, 5:51 PM
Brian
Brian - avatar
+ 1
Ok
9th Aug 2025, 6:25 PM
Alban
Alban - avatar
0
No I don't see it what is it ?
9th Aug 2025, 3:31 PM
Alban
Alban - avatar
0
Oh thanks I didn't saw it but it still wrong because it takes 1 input instead if 3
9th Aug 2025, 5:10 PM
Alban
Alban - avatar