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

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

要想使23.78965421的输出为23.7887,应用的语句是

A.cout < < 23.78965421;

B.cout < < fixed < < 23.78965421;

C.cout < < 23.78965421-0.001;

D.cout < < fixed < < 23.78965421-0.001;


参考答案

更多 “ 要想使23.78965421的输出为23.7887,应用的语句是A.cout < < 23.78965421;B.cout < < fixed < < 23.78965421;C.cout < < 23.78965421-0.001;D.cout < < fixed < < 23.78965421-0.001; ” 相关考题
考题 要想使23.78965421的输出为23.7887应用的语句是()A.cout 要想使23.78965421的输出为23.7887应用的语句是()A.coutB.coutC.coutD.cout

考题 要想使23.78965421的输出为23.7887应用的语句是A.cout<<23.78965421;B.cout<<fixed<<23.78965421;C.cout<<23.78965421-0.001;D.cout<<fixed<<23.78965421-0.001;

考题 与语句coutendl;不等价的是( )。 A.cout\n;B.cout\12;SXB 与语句coutendl;不等价的是( )。A.cout\n;B.cout\12;C.cout\xA;D.cout\0;

考题 在C++语言中输出“Hello World”的语句是()。A.cout>"Hello World";C.cin 在C++语言中输出“Hello World”的语句是( )。A.cout<<"Hello World";B.cout>>"Hello World";C.cin<<"Hello World";D.cin>>"Hello World";

考题 要想使23.78965421的输出为23.7887,应用的语句是( )。A.cout23.78965421;B.coutfixed23.78965421;C.cout23.78965421—0.001;D.coutfixed23.78965421—0.001;

考题 要想使23.78965421的输出为23.7887应用的语句是( )A.cout<<23.78965421; B.cout< C.cout<<23.78965421 -0.001; D.cout<

考题 若要输出一个浮点数 a,且保持浮点数精度为2位,右对齐,那么下列语句能够实现该要求的是()A.cout<<setprecision(2)<<right<<fixed<<a;B.cout<<a<<setprecision(2)<<right<<fixed;C.cout<<a;D.cout<<setw(2)<<right<<a;

考题 下列输出语句中,不正确的是()。A.cout<<’tn ’;B.cout<<0x20;C.cout.put('O');D.cout<<’A’;

考题 有语句 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;