第七周项目2-体重检测系统

/*
* Copyright (c) 2014,烟台大学计算机学院
* All right reserved.
* 作者:邵帅
* 文件:temp.cpp
* 版本号:v1.0
*/

#include<iostream>
using namespace std;
int main()
{
	int height,sex;
	double weight,standard_weight;
	cout<<"你是男生还是女生?"<<endl;
	cout<<"男生请输入1,女生请输入2"<<endl;
	cin>>sex;
	cout<<"请输入你的身高(cm)"<<endl;
	cin>>height;
	cout<<"请输入你的体重(kg)"<<endl;
	cin>>weight;
	if (sex=1)
	standard_weight=height-100;
	else if (sex=2)
	standard_weight=height-105;
	if (weight>standard_weight*1.2)
	 	cout<<"你超重了~该减肥了"<<endl;
	else if (weight<standard_weight*0.8)
	     cout<<"你偏瘦啊~该吃饭了"<<endl;
    else
	     cout<<"亲,正常~"<<endl;
	 return 0;
}


posted @ 2014-09-28 19:11  麻麻麻麻鱼鱼  阅读(82)  评论(0编辑  收藏  举报