Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对此完全陌生,我正在尝试边做边学。我有一些 c 的基本技能,并且通过研究其他应用程序并试图了解它们是如何构建的,我已经制作了大约 2 周的小型简单应用程序。
我现在正在尝试制作一个计数器,该计数器应该计算进出的人数。
除了让用户定义最大数量之外,我让一切都完美地工作。我想让用户在文本字段中输入最大数量,然后按下一个名为 start 的按钮,这将为变量 max 提供在文本框中输入的值。
我能得到一些帮助吗?
伪代码:
mx = Max from User; nrPersons = 0; While (Userinput is not ExitProgramm) do { if (0 < nrPersons < mx) // allwoed range { run your programm that works } else { if (nrPersons > mx) => take action if (nrPersons < 0) => take action } }