提交时间:2023-01-23 13:07:21

运行 ID: 6416

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