C++,输入体重,身高,算bmi
最佳回答
#include <string>
#include <stdlib。h>
using namespace std;
class person {//新建人物类
public:
person();
~person();
void setname(string inputname){
name=inputname;
}
string getname(){
return name;
}
void setbmi(double bmi){
person::bmi=bmi;
}
double getbmi(){
return bmi;
}
private:
string name;//姓名
double bmi;//BMI
};
person::person(){
}
int main(){
person* p1=new person();//人物对象
string text1 = "Type your first name (with no space):";
string text2 = "Type metric for metric system, type standard for standard system:";
string input;
string weight,height;
double bmi;
int choice;
bmi=0。0;
cout<<text1<<endl;
cin>>input;
p1->setname(input);
cout<<text2<<endl;
cin>>input;
if(input=="standard")//判断属于那种system
choice=0;
else if (input=="metric")
choice=1;
else if (input=="unknow")
choice=2;
switch(choice){
case 0:
cout<<"Type in your weight in pound and your height in inch:"<<endl;
cin>>weight>>height;
bmi=((atof((weight。c_str())))/((atof(height。c_str()))*(atof(height。c_str()))))*703;//计算bmi
p1->setbmi(bmi);
break;
case 1:
cout<<"Type in your weight in kilogram and your height in meter:"<<endl;
cin>>weight>>height;
bmi=(atof(weight。c_str()))/((atof(height。c_str()))*(atof(height。c_str())));
p1->setbmi(bmi);
break;
case 2:
cout<<"Type in your weight in pound and your height in inch:"<<endl;
cin>>weight>>height;
bmi=((atof((weight。c_str())))/((atof(height。c_str()))*(atof(height。c_str()))))*703;
p1->setbmi(bmi);
break;
}
cout<<p1->getname()<<", your BMI is "<<p1->getbmi()<<endl;
cout<<p1->getname()<<", you are considered to be ";
if(p1->getbmi()<18。5){//判断category
cout<<"Underweight"<<endl;
}
else if(p1->getbmi()<25。0){
cout<<"Normal"<<endl;
}
else if(p1->getbmi()<30。0){
cout<<"Overweight"<<endl;
}
else {
cout<<"Obese"<<endl;
}
}基本上行了,你试试,至于system和category,system是关键字,不过用不上,category可以弄成一个变量,我这里没用,也没必要。
最新回答共有2条回答
-
2026-03-31 17:28:55超级的石头
回复#include <iostream>#include <string>#include <stdlib。h>using namespace std;class person {//新建人物类public: person(); ~person(); void setname(string inputname){ name=inputname; } string getname(){ return name; } void setbmi(double bmi){ person::bmi=bmi; } double getbmi(){ return bmi; }private: string name;//姓名 double bmi;//BMI};person::person(){}int main(){ person* p1=new person();//人物对象 string text1 = "Type your first name (with no space):"; string text2 = "Type metric for metric system, type standard for standard system:"; string input; string weight,height; double bmi; int choice; bmi=0。0; cout<<text1<<endl; cin>>input; p1->setname(input); cout<<text2<<endl; cin>>input; if(input=="standard")//判断属于那种system choice=0; else if (input=="metric") choice=1; else if (input=="unknow") choice=2; switch(choice){ case 0: cout<<"Type in your weight in pound and your height in inch:"<<endl; cin>>weight>>height; bmi=((atof((weight。c_str())))/((atof(height。c_str()))*(atof(height。c_str()))))*703;//计算bmi p1->setbmi(bmi); break; case 1: cout<<"Type in your weight in kilogram and your height in meter:"<<endl; cin>>weight>>height; bmi=(atof(weight。c_str()))/((atof(height。c_str()))*(atof(height。c_str()))); p1->setbmi(bmi); break; case 2: cout<<"Type in your weight in pound and your height in inch:"<<endl; cin>>weight>>height; bmi=((atof((weight。c_str())))/((atof(height。c_str()))*(atof(height。c_str()))))*703; p1->setbmi(bmi); break; } cout<<p1->getname()<<", your BMI is "<<p1->getbmi()<<endl; cout<<p1->getname()<<", you are considered to be "; if(p1->getbmi()<18。5){//判断category cout<<"Underweight"<<endl; } else if(p1->getbmi()<25。0){ cout<<"Normal"<<endl; } else if(p1->getbmi()<30。0){ cout<<"Overweight"<<endl; } else { cout<<"Obese"<<endl; }}基本上行了,你试试,至于system和category,system是关键字,不过用不上,category可以弄成一个变量,我这里没用,也没必要。
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
