6 条题解
- 1
 
信息
- ID
 - 847
 - 时间
 - 1000ms
 - 内存
 - 128MiB
 - 难度
 - 6
 - 标签
 - 递交数
 - 1340
 - 已通过
 - 438
 - 上传者
 
#include <iostream>
using namespace std;
int main()
{
	int a , b, c;
	cin >> a >> b >> c;
	// cout << left << setw(8) << a ;
	// cout <<right<< " "<< setw(8) << b << " "
	// << setw(8) << c << endl;
	printf("%8d %8d %8d\n",a,b,c);
}
      考试不加return 0,赛后就吃0鸭蛋
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
cout << setw(8) << a << ' ';
cout << setw(8) << b << ' ';
cout << setw(8) <<c;
return 0;
}
有标志认证,属三无产品,请各位放心食用
三无产品还放心食用?
#include
#include
using namespace std;
int main()
{
int a,b,c;
cin >> a >> b >> c;
cout << setw(8) << a << ' ';
cout << setw(8) << b << ' ';
cout << setw(8) <<c;
return 0;
}
#include <stdio.h>
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
	int a , b, c;
	cin >> a >> b >> c;
	// cout << left << setw(8) << a ;
	// cout <<right<< " "<< setw(8) << b << " "
	// << setw(8) << c << endl;
	printf("%8d %8d %8d\n",a,b,c);
}