5 solutions
-
2
这题可以使用
setw()
函数。#include <iostream> #include <iomanip> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; cout << setw(8) << a << " " << setw(8) << " " << setw(8) << b << " " << setw(8) << c << endl; return 0; }
也可以使用
printf()
函数。#include <cstdio> int main() { int a, b, c; scanf("%d %d %d", &a, &b, &c); printf("%8d %8d %8d\n", a, b, c); return 0; }
- 1
Information
- ID
- 4454
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- 1
- Tags
- (None)
- # Submissions
- 773
- Accepted
- 276
- Uploaded By