+ 1

My code has an error and I have no clue why. It works just fine and runs perfectly, but the error will not go away.

https://code.sololearn.com/cuemkBbnItYm/?ref=app

20th Feb 2022, 2:24 PM
Isaac Palmersheim
3 Answers
+ 2
The compiler is scared because it's not sure if the `scan` function will return something or not. This is because the function contains just IF-ELSE statement and it's not sure wether any of them will be evaluated as "true" If all  of the condition evaluates to false,then the control will reach the end of function, without returning something,which is WRONG. You must explicitly return "" after the conditional statement or better restructure your code to return everything at the end of the control using ternary operators
20th Feb 2022, 2:39 PM
Mirielle
Mirielle - avatar
+ 3
You have one more It has to be r = rand() % 3 + 1 and add srand(time(0)) as well
20th Feb 2022, 2:37 PM
Мартин 😑🎵
Мартин 😑🎵 - avatar
+ 1
In the scan function if num is not equal to 1 2 or 3 you dont return a value
20th Feb 2022, 2:32 PM
Мартин 😑🎵
Мартин 😑🎵 - avatar