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.
我对控制台屏幕太困惑了。我无法弄清楚如何将光标移动到随机位置。这是我的代码:
#include<iostream> #include<conio.h> main() { cout<<"Hello World"; return 0; }
我想将光标移动到随机位置,而不是在按 Enter 后的开头。
在 C++ 中没有影响终端光标的标准方法。所以,实现这一点的第一步是弄清楚你的目标是什么系统,以及它提供了什么 API。