+ 4
Why does code playground skip input statements and execute rest statements???
4 Antworten
+ 8
The online compiler handles input in an unusual way. You have to send all the inputs the program requires at once, before it starts running.
When the dialogue box comes up for input, write each thing you want to input on its own line. When the code runs, the input statement(s) will take them one by one, as though a user were inputting them.
+ 2
This is the most infuriating thing about the SL interpreter. In the meantime I am using CppDroid as a C++ environment, and it works as you would expect it to.
But the input aspects of the SL compiler need to change!
+ 1
thanks
- 2
I am not sure but I think CP does not support multiple inputs yet. But as said before I am not experienced with CP. I am using Repl.it for coding.