#include #include #include using namespace std; int main() { string str; getline(cin, str); for (int i = 0; i < str.size(); i++) { cout << str[i]; if ((i + 1) % 10 == 0) { cout << '\n'; } } }...
[c++]백준 11721 열 개씩 끊어 출력하기에 대한 요약내용입니다.
자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.