提交时间:2023-01-24 12:39:43
运行 ID: 6460
#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; }