第1週種目2デブは怪我ができない
1657 ワード
/*
*Copyright (c)2013,
*All rights reserved.
* :test.cpp
* :
* :2014 3 6
* :v1.0
* :
* :
*/
#include <iostream>
using namespace std;
struct Student
{
char name [18];
char sex;// m/M, w/W
double height;
double weight;
};
int main()
{
Student student;
double bw,ow;
cout<<" , , , :"<<endl;
cin>>student.name>>student.sex>>student.height>>student.weight;
if (student.sex='w')
{
bw=(student.height-70)*0.6;
}
else
{
bw=(student.height-80)*0.7;
}
ow=(student.weight-bw)/bw;
if(ow >-0.1)
{
cout<<" , ! !"<<endl;
}
else if(ow >-0.2)
{
cout <<" , , !"<<endl;
}
else if(ow >0.1)
{
cout <<" , , , !"<<endl;
}
else if (ow>0.2)
{
cout <<" , 。 !"<<endl;
}
else
{
cout <<" , ! !"<<endl;
}
return 0;
}
心得体得:自分が最初に書いたのは実行できますが、基準に合わないので、参考にして修正してやっと基準に達しました.