0
Multiple ReadLines Not Working
Is there a way to run code with multiple ReadLines in it without crashing? My code works fine in Visual Studio but not here.
3 Respostas
+ 6
You're welcome! :D
Use the first one - one input per line.
+ 5
In the SoloLearn compiler, you have to give *all* the inputs in that first window you get for input.
Write each input for the ReadLines on their own separate lines, and it should work.
+ 1
I thought it might be that. So, to make sure I understand, if I request 3 numbers in a program, I should do the following in the pop-up window:
3
4
5
Or do I do it like: 3 4 5
Thanks @Tamra!