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

admin2019-06-04  30

问题 有如下程序:
    #include
    using namespace std;
    int main()
    {   
    cout.fill(‘*’);
    cout.width(6);
    cout.fill(‘#’);
    cOut<<1 23<    return 0:
    )   
    执行后的输出结果是(    )。

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

答案A

解析 此题考查的是I/O格式化输出。函数width(int n)设置输入输出宽度,当实际数据宽度小于制定的宽度时,多余的位置用填充字符填满;当实际数据宽度大于设置的宽度时,仍按实际宽度输出;函数fill(char c)用来设置填充字符。
转载请注明原文地址:https://kaotiyun.com/show/s28p777K
0

随机试题
最新回复(0)