标签: c++
我添加了两个双号。
double a=4.0; double b=4.0; cout<<a+b;
答案仅为8,但要求8.0。
答案 0 :(得分:2)
我相信你想要的是这样的:
cout << std::setprecision(1) << a+b;