Prompting a user with an input box? [C++]

后端 未结 8 856
遥遥无期
遥遥无期 2020-12-11 15:17

My goal is to simply use a pop-up box to ask the user for an input. I\'ve searched around quite a bit and pretty much all the results say that creating a messageBox is reall

8条回答
  •  借酒劲吻你
    2020-12-11 15:44

    Using a console window is better suited to the mode of communication where a program prompts the user, continues, prompts the user again, and so on.

    And for that you can use the standard library's facilities like cin and cout.

提交回复
热议问题