#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout << setw(8) << a << " " << setw(8) << b << " " << setw(8) << c;
return 0;
}
#include <iomanip>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout << setw(8) << a << " " << setw(8) << b << " " << setw(8) << c;
return 0;
}
C++控制台输入输出示例
6420

被折叠的 条评论
为什么被折叠?



