📅  最后修改于: 2022-03-11 14:44:49.385000             🧑  作者: Mango
// setfill example
#include // std::cout, std::endl
#include // std::setfill, std::setw
using namespace std;
int main () {
cout << setfill ('x') << setw (10);
cout << 77 << endl;
return 0;
}