单项选择题下面关于C++流的叙述中,正确的是( )。
单项选择题有如下程序: #include<iostrearn> using namespace std; int main() { cout.fill(’*’); cout.width(6); cout.fill(’#’); cout<<123<<endl; return 0; } 执行后的输出结果是( )。