提交时间:2023-01-24 12:34:41

运行 ID: 6459

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