第十七周上机项目三胖子伤不起

/*
 *Copyright (c) 2014, 烟台大学计算机学院
 *All rights reserved.
 *文件名称:text.cpp
 *作者:陈栋梁
 *完成日期:2014年 12 月 27 日
 *版本号:v1.0
 *
 */
#include <iostream>
#include <cstring>
using namespace std;
double sexstandard(int,double);
string sexcall(int);
void juge(double);
int main()
{
    struct person
    {
        string name;
        int sex;
        double high;
        double weight;
    } per;
    cout<<"输入姓名:";
    cin>>per.name;
    cout<<"输入性别(男1 女2):";
    cin>>per.sex;
    while(per.sex!=1&&per.sex!=2)
    {
        cout<<"无法判断性别,重新输入:";
        cin>>per.sex;
    }
    cout<<"输入身高(cm)和体重(kg):";
    cin>>per.high>>per.weight;
    double standard,overweight;
    string call;
    standard=sexstandard(per.sex,per.high);
    call=sexcall(per.sex);
    overweight=(per.weight-standard)/standard;
    cout<<"尊敬的"<<per.name<<call<<",";
    juge(overweight);
    return 0;
}
double sexstandard(int s,double h)
{
    double sta;
    if(s==1)
        sta=(h-80)*0.7;
    else
        sta=(h-70)*0.6;
    return sta;
}
string sexcall(int s)
{
    string call;
    if(s==1)
        call="先生";

    else
        call="女士";
    return call;
}
void juge(double a)
{
    if(a<=0.1&&a>=(-0.1))
        cout<<"恭喜!您的体重正常!";
    else if(a>0.1&&a<=0.2)
        cout<<"请注意!您超重了!"<<endl;
    else if(a>0.2)
        cout<<"很不幸,您收到警告!您太胖了!"<<endl;
    else if(a<(-0.2))
        cout<<"很不幸,您收到警告!您太瘦了!"<<endl;
    else cout<<"请注意!您的体重偏轻啊!"<<endl;
}


运行结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值