0
How to modify the input dialog?
When doing a code on the code playground, I was trying to make the input box give certain directions for the user, but it only says "It seems that your code needs some input", or something along those lines. Does anyone know if there is a way to change that on Java?
2 Answers
+ 2
No there isn't. That's how CodePlayground takes input from the user on all the programming languages.
You will need to use a different IDE if you don't want to be asked at the start of the program.
CodePlayground will also only ask for an input once, regardless of how many times you need it. However, you can still take multiple inputs by separating each one by a \n (enter).
0
Good to know. Thanks!