体重监测器源代码送到,亲,注意查收哦~


  1. /*  
  2.  * Copyright (c) 2014, 烟台大学计算机学院  
  3.  * All rights reserved.  
  4.  * 文件名称:test.cpp  
  5.  * 作    者:刘畅   
  6.  * 完成日期:2014年 10 月 6 日  
  7.  * 版 本 号:v1.0  
  8.  *  
  9.  * 问题描述:体重检测器 
  10.  * 输入描述:一个变量,代表性别;两个整数,代表高度和体重;一个因变量,代表标准体重。
  11.  * 程序输出:一段话语,代表体重情况。
  12. */
  13. #include <iostream> 
  14. using namespace std;
  15. int main( )
  16. {
  17.    int height,weight;
  18.    double standard_weight;
  19.    char sex;
  20.    cin>>sex;
  21.    if (sex == 'm')
  22.       cout<<"男"<<endl;
  23.    else if (sex ==  'f')
  24.       cout<<"女"<<endl;
  25.    else
  26.       cout<<"输入错误"<<endl;
  27.    cin>>height;
  28.    cin>>weight;
  29.    if (sex == 'm')
  30.       standard_weight=height-100;
  31.    if (sex == 'f')
  32.       standard_weight=height-105;
  33.    else
  34.       return 0;
  35.    if (weight>standard_weight*1.2)
  36.       cout<<"亲,你超重了,需要加强锻炼啊~"<<endl;
  37.    else if (weight<standard_weight*0.8)
  38.       cout<<"你怎么这么瘦,要多吃饭啊~"<<endl;
  39.    else
  40.       cout<<"你的体重好标准,继续保持哦~"<<endl;
  41.    return 0;
  42. }
  43.  
  44. 今天打源代码打得很欢快啊,越来越喜欢这种感觉了,哈哈
  45. 以上就是体重监测器的源代码了,虽然能够编译成功并运行,但我觉得还是有些繁琐了,希望各路大神能帮帮忙,指点一下,怎样简化??

你可能感兴趣的:(namespace,源代码,计算机,iostream)