在I/O流库中定义的控制输出宽度的函数为()。A、width()B、fill()C、precision()D、setw()
在I/O流库中定义的控制输出宽度的函数为()。
A、width()
B、fill()
C、precision()
D、setw()
相关考题:
有如下程序:includeusing namespace std;int main(){ cout.fill('*'); cout.width (6 有如下程序: #include<iostream> using namespace std; int main() { cout.fill('*'); cout.width (6); cout.fill('#'); cout<<123<<end1; return 0; }执行后的输出结果是______ 。A.###123B.123###C.***123D.123***
有如下程序:include using namespacestd;int main(){cout.fill('*');cout.width(6);c 有如下程序: #include <iostream> using namespace std; int main(){ cout.fill('*'); cout.width(6); cout.fill('#'); cout<<123<<end1; return 0;} 执行后的输出结果是A.###123B.123###C.***123D.123***
下列有关C++流的叙述中,错误的是A.C++操作符setw设置的输出宽度永久有效B.C++操作符endl可以实现输出的回车换行C.处理文件I/O时,要包含头文件fstreamD.进行输入操作时,eof()函数用于检测是否到达文件尾
在设置界面布局的时候,如果将TextView的宽度设置为等于文字的内容的长度,则layout_width的值为()。A.wrap_contentB.fill_parentC.match_parentD.match_content
如下输出语句的输出为____ cout.width (10); cout.fill('*'); cout << hex << 9; cout<< oct << 9;