标签: c++ string
在c ++程序中如何获得如下输出:
* *
基本上,例如如何在这两个星号之间获得三个空格作为输出?
答案 0 :(得分:2)
#include <iostream> int main() { std::cout << "* *"; }