提交时间:2024-09-15 12:45:47

运行 ID: 50892

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