+ 1
Can you change the text on the user-input screen? (C#)
Is there a way to change the text on the user-input box that appears for a 'Console.ReadLine()" for example in C#? So far, the box that appears, states "Seems like your program requires an input" - however, without reading the code, it is near impossible to know what input is expected. I just wondered if there was a way to change this text, or if it was a Sololearn default.
2 Respostas
+ 5
The pop-up box is console input for sololearn. It means, that your program need input so add all required input here in pop-up for the program run.
Add all input required by program in pop-up as line by line then hit enter.
Sololearn is not interactive. So it need all inputs before proceeding to run.
It's a default.
Hope it helps..
+ 2
Jayakrishna🇮🇳 thank you for the answer! Yes, it helps.
I just was wondering and thought I'd pitch it to the bigger brains of Sololearn haha.
I was just use to coding on Visual Studio IDE where the inputs can be read and replied within the console.