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つのアスタリスクの間に3つのスペースを出力として取得する方法は?
#include <iostream> int main() { std::cout << "* *"; }