+ 1
Please can you help me.
When i want to run a program with this app, it says : *looks like your code need in input* and it want me to put something. But i don't know what to enter.
3 ответов
+ 10
The input of your program, if there's more than one input you have to separate each input by using break lines.
Input_One
Input_Two
Input_Three
... and so on.
Unfortunately working on the server our CodePlayground has not the best way to manage user input. :)
+ 4
Look at your code and see what the code is calling for, it will say something like x = input(Enter something) and that will give you a hint as to what it's asking for. It's really hard to tell without looking at the code, but it could be a number, multiple numbers, a string, etc.
+ 4
Read the code first, usually the code author write a brief comment about what input is expected, it is commonly placed at the beginning (first few lines).