C++输入3个整数,输出它们的平均值,保留3位小数.
展开全部
#include <iostream>
#include <iomanip>
using namespace std;
double average(double a, double b, double c)
{
double result=(a+b+c)/3.000;
return(result);
}
int main()
{
int a, b, c;
cin>>a>>b>>c;
cout<<setiosflags(ios::fixed)<<setprecision(3)<<average(a, b, c)<<endl;
return(0);
}
#include <iomanip>
using namespace std;
double average(double a, double b, double c)
{
double result=(a+b+c)/3.000;
return(result);
}
int main()
{
int a, b, c;
cin>>a>>b>>c;
cout<<setiosflags(ios::fixed)<<setprecision(3)<<average(a, b, c)<<endl;
return(0);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//
cout.precision
void
ccoutformatsample::p_17_6(void)
{
cout
<<
_t("
17.6
设置浮点数的显示精度")
<<
endl
<<
endl;
float
f1
=
23.3232;
float
f2
=
1.9
+
8.0
/
9.0;
cout
<<
"f1
=
"
<<
f1
<<
endl;
cout
<<
"f2
=
"
<<
f2
<<
endl;
//
设置精度为2
cout.precision(2);
cout
<<
"f1
=
"
<<
f1
<<
endl;
cout
<<
"f2
=
"
<<
f2
<<
endl;
//
解除设定
cout.precision();
cout
<<
endl
<<
endl;
}
这段资料对你应该有用吧。
以上搜自http://blog.csdn.net/revision/archive/2008/01/10/2032797.aspx
cout.precision
void
ccoutformatsample::p_17_6(void)
{
cout
<<
_t("
17.6
设置浮点数的显示精度")
<<
endl
<<
endl;
float
f1
=
23.3232;
float
f2
=
1.9
+
8.0
/
9.0;
cout
<<
"f1
=
"
<<
f1
<<
endl;
cout
<<
"f2
=
"
<<
f2
<<
endl;
//
设置精度为2
cout.precision(2);
cout
<<
"f1
=
"
<<
f1
<<
endl;
cout
<<
"f2
=
"
<<
f2
<<
endl;
//
解除设定
cout.precision();
cout
<<
endl
<<
endl;
}
这段资料对你应该有用吧。
以上搜自http://blog.csdn.net/revision/archive/2008/01/10/2032797.aspx
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询