第二周项目二 标准体重

问题及代码:

/*
*Copyright(c)2016,烟台大学计算机控制工程学院
*All rights reserved.
*文件名称:test.cpp
*作者:又高又帅
*完成日期:2016年3月5日
*
*问题描述:成年男性的标准体重公式为:标准体重(kg)=身高(cm)-100,超标准体重20%为超重,比标准体重轻20%为超轻。
*          请编写程序,完成下面任务:
*          (1)计算并输出标准体重
*          (2)计算标准体重,输出体重状态(正常/超重/超轻)
*/
#include<iostream>
using namespace std;
int main()
{
    double standard,weight,height;
    cout<<"请输入身高 体重:";
    cin>>height>>weight;
    standard=height-100;
    cout<<"标准体重为:"<<standard<<endl;
    if(weight>=standard*1.2)
        cout<<"您的状况为:超重";
    else if(weight<=standard*0.8)
        cout<<"您的状况为:超轻";
    else
        cout<<"您的状况为:正常";
    return 0;
}


你可能感兴趣的:(第二周项目二 标准体重)