提交时间:2023-02-10 15:54:53

运行 ID: 8535

#include <iostream> #include <iomanip> using namespace std; int main() { int a,b,c; cin >> a >> b >> c; cout << setw(6) << a << ' '; cout << setw(6) << b << ' '; cout << setw(6) << c; return 0; }