C++ preprocessor and user input on SoloLearn
Hi, I think the user input does not work as it should. Apart from the fact that he is uncomfortable, he should ask for data EXACTLY when we want to take it. What I see, currently the code is simply checked if there are any (non-commented) instructions for the standard input (in C ++ "cin >>") anywhere in the code. That is why we are asked for it even when the program actually does not load anything (I'm talking mainly about the preprocessor). I know you can leave dialog box blank, but it should not be displayed. I think it would be better if the dialog box asking for input appeared based on the generated final source code, after the linker, etc. Now I see at least two errors: -This generates a window with input (and should not): https://code.sololearn.com/cBaLbupuRlga/#cpp -This does not generate (and should): https://code.sololearn.com/cxYKKZly8N4I/#cpp What do you think about it?