0分求助!!!
查看原帖
0分求助!!!
791222
lby_commandBlock楼主2023/2/8 21:20
#include<iomanip>
#include<iostream>
using namespace std;
long long a, b, c;

int main(){
    cin >> a >> b >> c;
    cout.setf(ios::right);
    cout << setw(8) << a;
    cout << setw(8) << b;
    cout << setw(8) << c;
	return 0;
}
2023/2/8 21:20
加载中...