1

注意下面有作业。

编辑:

取出无用信息。

所以显然这是一个家庭作业,除了我的函数内部的计算之外,一切似乎都是正确的。

如何返回非截断值?

float hat(float weight, float height) {
    return (weight/height)*2.9;
}
float jacket(float weight, float height, int age) {
    double result = (height * weight) / 288;
    /*now for every 10 years past 30 add (1/8) to the result*/
    if((age - 30) > 0){
        int temp = (age - 30) / 10;
        result = result + (temp * .125);
        //cout<<"result is: "<<result<<endl;
    }
    return result;
}

float waist(float weight, int age) {
    double result = weight / 5.7;
    /*now for every 2 years past 28 we add (1/10) to the result*/
    if((age - 28) > 0){
        int temp = (age - 28) / 2;
        result = result + (temp * .1);
    }
return result;}
4

2 回答 2

1
cout << "hat size: " << setprecision(2) << hat(weight, height) << endl;

您在 iostreams 格式化输出的工作方式中遇到了问题。

在格式化浮点值的“默认”模式下(没有请求fixedscientific输出),精度是小数点两边要打印的位数。想想“重要数字”,而不是“小数位数”。

对于您要执行的操作,我建议您使用“固定”模式或手动舍入,然后不要指定精度。

于 2015-06-25T23:52:01.213 回答
0

设置fixed

  // Output data //
  cout << fixed;
  cout << "hat size: " << setprecision(2) << hat(weight, height) << endl;
  cout << "jacket size: " << setprecision(2) << jacket(weight, height, age) << endl;
  cout << "waist size: " << setprecision(2) << waist(weight, age) << endl;
于 2015-06-25T23:50:06.227 回答