执行下列代码,程序的输出结果是: cout <<″Hex:″<< hex << 255;A.ffB.hex:ffC.Hex:ffD.f
执行下列代码,程序的输出结果是: cout <<″Hex:″<< hex << 255;
A.ff
B.hex:ff
C.Hex:ff
D.f
参考答案和解析
Hex:ff
相关考题:
下列程序执行后的输出结果是 included main( ) { char arr[2][4]; strcpy(arr,"you") 下列程序执行后的输出结果是#included<string.h>main( ){ char arr[2][4];strcpy(arr,"you");strepy(arr[1],"me");arr[0][3]='';cout<<arr<<endl;}A.youmeB.youC.meD.err
以下程序的输出结果是【】。 include void main( ) } int a=0; a+=(a=8); cout 以下程序的输出结果是【 】。include<iostream.h>void main( )}int a=0;a+=(a=8) ;cout<<a;}
以下程序的输出结果是includeusing nameSpace std;int main(){ cout.fill('*'); cout 以下程序的输出结果是 #include<iostream> using nameSpace std; int main() { cout.fill('*'); cout.width(5); cout<<hex<<100<<end1; return 0; }A.**100B.***64C.100**D.64***
下列程序的执行结果是______。 include include using namespace std; vo 下列程序的执行结果是______。include<iostream.h>include<iomanip.h>using namespace std;voidmain(){cout<<setfill('x')<<setw(10);cout<<"Hello"<<end1;}
有以下程序: #includeiostream usingnamespacestd; classA{ public: A( ){cout"A";} }; classB{public:B( ){cout"B";}}; classC:publicA{ Bb; public: C( ){cout"C";} }; intmain( ){Cobj;return0;} 执行后的输出结果是( )。A.CBAB.BACC.ACBD.ABC
下列程序的输出结果是()。ificludeusing namespace std;int main(){cout.fill('*');co 下列程序的输出结果是( )。 #ificlude<iostream> using namespace std; int main() { cout.fill('*'); cout.width(5); cout<<oct<<100<<endl; return 0; }A.**100B.**144C.100**D.144**
以下程序的输出结果是include using namespace std;int main(){cout.fill('*');cout. 以下程序的输出结果是#include <iostream>using namespace std;int main(){ cout.fill('*'); cout.width(5); cous<<hex<<100<<end1; return 0;}A.**100B.***64C.100**D.64***
下列程序的输出结果是()。includevoid main(){char*Str;str="testI";cout 下列程序的输出结果是( )。 #include<iostream.h> void main() { char*Str; str="testI"; cout<<str[5]; }A.test!B.testC.空字符D.异常
有以下程序:includeusing namespace std;int main(){int n=100;cout 有以下程序: #include<iostream> using namespace std; int main(){ int n=100; cout<<dec<<n<<","; cout<<oct<<n<<","; cout<<hex<<n<<endl; return 0; } 程序运行后输出的结果是( )。A.100,100,100B.64,144,100C.100,144,64D.100,64,144
下列程序执行后的输出结果是 include main() { char arr[2][4]; strcpy( 下列程序执行后的输出结果是 #include<string.h> main() { char arr[2][4]; strcpy(arr, "you"); strcpy(arr[1], "me"); arr[0][3]=''; cout<<arr<<endl; }A.youmeB.youC.meD.err
在下列选项中,用于清除基数格式位设置以十六进制数输出的语句是()。A、cout<<setf(ios::dec,ios::basefield);B、cout<<setf(ios::hex,ios::basefield);C、cout<<setf(ios::oct,ios::basefield);D、cin>>setf(ios::hex,ios::basefield);
单选题在下列选项中,用于清除基数格式位设置以十六进制数输出的语句是()。Acout<<setf(ios::dec,ios::basefield);Bcout<<setf(ios::hex,ios::basefield);Ccout<<setf(ios::oct,ios::basefield);Dcin>>setf(ios::hex,ios::basefield);