Split multiplier into multiple lines | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Split multiplier into multiple lines

when I try to run one your guyses codes I get this sometimes

5th Aug 2017, 4:14 PM
Ignacio Cordova
Ignacio Cordova - avatar
2 Answers
+ 3
Because you bad read it ^^ The prompt box exact message should be << Split multiple inputs into separate lines >>... because (except for web projects) in code playground scripts are compiled/executed on server side, so user inputs have this limitation that you need to send all required input for the whole execution of the script at once at beginning. If your script will ask user one numbers and a word, write them with new line for each, but in the only alone field prompted at start, as: 42 forty-two ... the script will read input from this rather from real standard input and will throw an EOF error if not enough data is provided. The output work in a same kind of way, buffering it on server side and sending it at once at end of script to be displayed to user... Unfortunally, these in/output limitations doesn't allow real interactive script to run on playground (such as a guess number game) ^^
6th Aug 2017, 10:58 AM
visph
visph - avatar
0
I have looked it up online and I still can't figure it out what is split multiplier into multiple lines
5th Aug 2017, 4:15 PM
Ignacio Cordova
Ignacio Cordova - avatar