提交时间:2024-09-15 13:38:11

运行 ID: 50898

#include <bits/stdc++.h> using namespace std; int main() { char a, b, c; cin >> a >> b >> c; cout << std::setw(7) << a << " " << std::setw(7) << b << " " << std::setw(7) << c << std::endl; return 0; }