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++ 程序中,如何获得如下输出:
* *
基本上,例如如何在这两个星号之间获得三个空格作为输出?
#include <iostream> int main() { std::cout << "* *"; }