#include<fstream.h>
#include<iomanip.h>
#include<iostream.h>
using namespace std;
ifstream f("atestat.in");
ofstream g("atestat.out");
int n,i,nr=0;
float v[100];
void a(int n)
{
for(i=1;i<=n;i++)
f>>v[i];
for(i=1;i<=n;i++)
cout<<v[i]<<" ";
}
int main()
{
f>>n;
a(n);
cout<<endl;
float s=0;
for(i=1;i<=n;i++)
{
if(v[i]<0)
{
s=s+v[i];
nr++;
}
}
cout<<setw(2)<<s/nr<<endl;
}
我的“atestat.in”文件包含: 6 -56.765 2.3 4.56 -1.2 -1.8 3
程序首先通过使用数组显示“atestat.in”文件第二行的所有数字,然后它应该显示该数组内所有负数的算术平均值,小数点后的2个数字的精度。出于某种原因,setw(2)什么都不做,因为我的cout<<setw(2)<<s/nr<<endl;
显示“19.9217”而不是“19.92”......有谁可以告诉我为什么?我不正确地以某种方式使用它吗?
答案 0 :(得分:2)
小数点后的精度为2位数
为此,您需要:
std::cout << std::fixed;
std::cout << std::setprecision(2) << f << '\n'; //assume f the number you wanna print
std::setw不能用于此目的:
当在表达式中使用&lt;&lt; setw(n)或in&gt;&gt; setw(n),将流的宽度参数设置为out或in到n。