网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

语句cout<<setiosflagags(ios::showpos)<<125<<"/t"<<-125<<endl;的输出结果为【 】。


参考答案

更多 “ 语句cout<<setiosflagags(ios::showpos)<<125<<"/t"<<-125<<endl;的输出结果为【 】。 ” 相关考题
考题 ( 20 )已知数组 arr 的定义如下:int arr[5] = {1,2,3,4,5};下列语句中输出结果不是 2 的是A ) cout *arr+1 endl;B ) cout *(arr+1)endl;C ) cout arr[1] endl;D ) cout *arr endl;

考题 根据输出结果填空完成下面程序。 include class Test { private: static int val; in 根据输出结果填空完成下面程序。include<iostream.h>class Test{private:static int val;int a;public:static int func( );void sfunc(Test r);};______//初始化静态变量valint Test::func( ){return val++;}void Test::sfunc(Test r){r.a=125;cout<<"Result3="<<r.a;}void main( ){cout<<"Resultl="<<Test::func( )<<endl;Test A;cout<<"Result2="<<A.fune( )<<endl;A. sfunc(A);}输出结果为:Result1=201Result2=202Result3=125

考题 语句cout<<setiosflags(ios::showpos)<<38<<""<<-38<<end1;的输出结果为【 】。

考题 执行语句序列 int x=1,y=x; cout<<x<<'-'<<y<<endl; 输出结果为( )A.x-xB.1-1C.1-0D.异常

考题 5.以输出宽度为 8 输出变量 x 值的语句是()。A.(A)cout<<setw(8)<<x<<endl;B.(B)cout<<oct<<x<<endl;C.(C)cout<<setprecision(8)<<x<<endl;D.(D)cout<<setfill(8)<<x<<endl;

考题 有语句 int a=1, b=2; 以下正确的输出语句是()。A.cout<<a=a+b<<endl;B.cout<<a>b?a:b<<endl;C.cout<<(hex)a+b;D.cout<<a<<endl<<a<<endl;

考题 已知数组 arr 的定义如下: int arr[5] = {1,2,3,4,5}; 下列语句中输出结果不是3的是_______。A.cout << *arr+2 <<endl;B.cout << *(arr+2)<<endl;C.cout << arr[2] <<endl;D.cout << *arr <<endl;

考题 已知数组arr的定义如下: int arr[5]={1,2,3,4,5}; 下列语句中输出结果不是2的是()。A.cout << *arr+1 <<endl;B.cout << *(arr+1)<<endl;C.cout << arr[1] <<endl;D.cout << *arr <<endl;

考题 已知数组arr的定义如下: int arr[5] = {1,2,3,4,5}; 下列语句中输出结果不是2的是()A.cout << *arr+1 <<endl;B.cout << *(arr+1)<<endl;C.cout << arr[1] <<endl;D.cout << *arr <<endl;