第一周项目2-胖子伤不起

/*
* Copyright (c) 2013, 烟台大学计算机学院
* All rights reserved.
* 作    者:王英华
* 完成日期:2014 年 3 月 1 日
* 版 本 号:v1.0
* 输入描述: 无
* 问题描述:输入姓名,性别,身高,体重,输出体重状况
* 程序输出:略
* 问题分析:略
* 算法设计:略
*/
#include <iostream>
using namespace std;
void calculate(double);
struct Person
{
    char name[20];
    char sex;
    double height;
    double weight;
};
struct Person person;
double standard,chao;
int main()
{
    cout<<"请输入姓名:";
    cin>>person.name;
    cout<<"请输入身高(cm):";
    cin>>person.height;
    cout<<"请输入体重(kg):";
    cin>>person.weight;
    cout<<"请选择性别:\n1.男\t2.女\n  ";
    int n;
    cin>>n;
    switch(n)
    {
    case 1:
        standard=(person.height-80)*0.7;
        break;
    case 2:
        standard=(person.height-70)*0.6;
        break;
    }
    calculate(standard);
    return 0;
}
void calculate(double standard)
{
    double chao;
    chao=(person.weight-standard)/standard;
    if(chao<=-0.2)
    {
        cout<<"体重不足"<<endl;
    }
    else if(chao<=-0.1)
    {
        cout<<"过轻"<<endl;
    }
    else if(chao<=0.1)
    {
        cout<<"正常"<<endl;
    }
    else if(chao<=0.2)
    {
        cout<<"过重"<<endl;
    }
    else
    {
        cout<<"肥胖"<<endl;
    }

}

运行结果:第一周项目2-胖子伤不起_第1张图片

心得体会:繁,乱,晕。。。。。。

你可能感兴趣的:(第一周项目2-胖子伤不起)