测量标准体重的四种逐渐升级版程序源代码

  1. /*  
  2.  * Copyright (c) 2014, 烟台大学计算机学院  
  3.  * All rights reserved.  
  4.  * 文件名称:test.cpp  
  5.  * 作    者:刘畅   
  6.  * 完成日期:2014年 10 月 5   
  7.  * 版 本 号:v1.0  
  8.  *  
  9.  * 问题描述:测量标准体重的四种逐渐升级版程序源代码
  10.  */
  11. (1)
  12. #include <iostream>
  13. using namespace std;
  14. int main()
  15. {
  16.   int height;
  17.   double standard_weight;
  18.   cout << "多高?" << endl;
  19.   cin >> height;
  20.   standard_weight = height - 100;
  21.   cout << "标准体重为:" << standard_weight << endl;
  22.   return 0;
  23. }
  24.  
  25.  (2)
  26. #include <iostream>
  27. using  namespace std; 
  28. int main( )
  29. {
  30.   int height,weight;
  31.   double standard_weight;
  32.   cin>>height>>weight;
  33.   standard_weight=height-100;
  34.   cout<<"标准体重为:"<<standard_weight<<endl;
  35.   if (weight>standard_weight*1.2)
  36.     cout<<"你超重了:"<<endl;
  37.   return 0;
  38. }

  39.  (3)
  40. #include <iostream>
  41. using namespace std;
  42. int main( )
  43. {
  44.   int height,weight;
  45.   double standard_weight;
  46.   cin>>height>>weight;
  47.   standard_weight=height-100;
  48.   cout<<"标准体重为"<<standard_weight<<endl;
  49.   if (weight>standard_weight*1.2)
  50.      cout<<"你超重啦"<<endl;
  51.     else 
  52.       cout<<"不必担心"<<endl;
  53.   return 0;
  54.  
  55.  (4) 
  56. #include <iostream>
  57. using namespace std;
  58. int main( )
  59. {
  60.   int height,weight;
  61.   double standard_weight;
  62.   cin>>height>>weight;
  63.   standard_weight=height-100;
  64.   cout<<"标准体重为"<<standard_weight<<endl;
  65.   if (weight>standard_weight*1.2)
  66.   cout<<"你超重啦"<<endl;
  67.     else
  68.       if (weight<standard_weight*0.8)
  69.       cout<<"你要增重"<<endl;
  70.         else cout<<"不必担心"<<endl;
  71.    return 0;
  72.  图片什么的我就不传了,打字打得手都酸了,这就是我们“程序猿”、“攻城狮”未来要面对的么?果然很辛苦,但我不会放弃,努力奋斗,老衲一定会是那最优秀的“程序猿”之一.第一份编程设计作业--搞定☺☺☺
  73. 还有一种体重监测器上由于有些地方不懂尚未编译成功,敬请期待...

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