17周,胖纸伤不起。。结构体初试手

问题及代码:

/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:莉莉.cpp
*作者:李莉
*完成日期:2014年12月22日
*版本号:v1.0
*
*问题描述:利用结构体处理体重问题,并输出身体质量
*程序输入:姓名,性别,身高体重
*程序输出:体重状况
*/
#include <iostream>
using namespace std;
struct people//定义人信息的结构体
{
  char name[20];
  char sex;
  double high;
  double weight;
};
int main()
{
    double overweight,stweight;//定义超重变量和标准体重变量
    people p;
    cin>>p.name>>p.sex>>p.high>>p.weight;
    if(p.sex=='f'||p.sex=='F')//女性性别是f或者F
        stweight=(p.high-70)*0.6;
    else
        stweight=(p.high-80)*0.7;
    overweight=(p.weight-stweight)/100;
    if(overweight>=0.2)
        cout<<"小胖纸,该减肥啦!"<<endl;
    else if(overweight>0.1)
        cout<<"呦呵,小胖胖。。。O(∩_∩)O哈哈~"<<endl;
    else if (overweight>-0.1)
        cout<<"身材不错嘛。继续保持哈***"<<endl;
    else if (overweight>-0.2)
        cout<<"好瘦呀。。您是竹竿吗???"<<endl;
    else
        cout<<"非洲难民。。请回非洲吧!!!!"<<endl;
    return 0;
}


运行结果:

17周,胖纸伤不起。。结构体初试手_第1张图片

心得体会:引用结构体的时候一定要注意加上结构体的名字。。一定要注意

 

你可能感兴趣的:(17周,胖纸伤不起。。结构体初试手)