+ 1
Why every time that my code asking for user input in Java there's always pop-up saying"looks like your program needs input"?
Can't input many times, just want you to improve it, because I'm now in love in this app.
3 Answers
+ 7
Here you go!
https://www.sololearn.com/post/664632/?ref=app
+ 4
Because you have a Scanner object in your code somewhere.
+ 2
JM Guadalquiver Donceras it would be easier to help you find the problem if you showed us your code. As Simba pointed out that is one of the issues with SoloLearn and as D_Stark pointed out is another.
Unless you structure your code a certain way for the most part you will have to insert all your desired inputs at the beginning of your code as if it was structured for multiple inputs unlike a normal executable code in a normal created app environment.
https://www.sololearn.com/post/664632/?ref=app
An alternative is to set up all your input values in an array or a list as a work around as far as here on SL.