这个程序为什么不能正确输出?
#include<iostream>#include<iomanip>usingnamespacestd;intmain(){floata=1.05,b=10.15,c=...
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
float a = 1.05, b = 10.15, c = 200.87;
cout << setfill('*') << setprecision(2);
cout << setw(10) << a << '\n';
cout << setw(10) << b << '\n';
cout << setw(10) << c << '\n';
system("pause");
}
输出的并不是小数,乱七八糟 展开
#include <iomanip>
using namespace std;
int main()
{
float a = 1.05, b = 10.15, c = 200.87;
cout << setfill('*') << setprecision(2);
cout << setw(10) << a << '\n';
cout << setw(10) << b << '\n';
cout << setw(10) << c << '\n';
system("pause");
}
输出的并不是小数,乱七八糟 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询