请问我这个在输出的时候为什么不能用setfill?谢谢
#include <iostream> #include <iomanip> using namespace std; int main() { long int a, b, c; cin >> a >> b >> c; cout << setw(8) << a <<setfill(' ')<< setw(8) << b <<setfill(' ')<< setw(8) << c << endl; }