有如下程序:    #include<iostream>    using namespace std;    int main()    {        cout.fill(’*’)        cout.width(6);        cout.

admin2017-10-17  20

问题 有如下程序:    #include<iostream>    using namespace std;    int main()    {        cout.fill(’*’)        cout.width(6);        cout.fill(’#’)        cout<<123<<endl;        return 0;    }    执行后的输出结果是

选项 A、###123
B、123###
C、***123
D、123***

答案A

解析 cout函数的fill()方法用来填充不足宽度:width()用来指定输出宽度。
转载请注明原文地址:https://kaotiyun.com/show/nWAp777K
0

最新回复(0)