提交时间:2024-09-16 09:34:32

运行 ID: 50924

#include<iostream> #include<iomanip> using namespace std; int main(){ //Declare there integers int a, b, c; //Read input cin >> a >> b >> c; //Print the integers cout << setw(7) << a << " " << setw(7) << b << " " << setw(7) << c << endl; return 0; }