测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A26367. 运行下列程序,输出结果是( )。#include <iostream> #include <iomanip> using namespace std; int main() { float x=2/3.0; cout << x <<' '; cout << setiosflags(ios::fixed); cout << setprecision(0) << x << ' '; cout << …

单选题 容易

题目描述

运行下列程序,输出结果是(    )。

#include <iostream>
#include <iomanip>
using namespace std;
int main()
{ 
    float x=2/3.0;
    cout << x <<' ';
    cout << setiosflags(ios::fixed);
    cout << setprecision(0) << x << ' ';
    cout << setprecision(2) << x << '\n';
}

选项(单选)

上一题 下一题