一问题及代码
#include<iostream>
using namespace std;
int main()
{
double b,c,d,s;
cout<<"输入身高";
cin>>b;
c=b-100;
cout<<"输入体重";
cin>>d;
s=c*0.2;
if(d-c>s)
cout<<"超重";
else if(d<c-s)
cout<<"超轻";
else
cout<<"正常";
}
using namespace std;
int main()
{
double b,c,d,s;
cout<<"输入身高";
cin>>b;
c=b-100;
cout<<"输入体重";
cin>>d;
s=c*0.2;
if(d-c>s)
cout<<"超重";
else if(d<c-s)
cout<<"超轻";
else
cout<<"正常";
}
二运行结果
三心得体会
第一次C++语言编写程序,在写码过程中虽然遇到了小问题,在老师和同学的帮助下,也完成了程序。在细节方面仍需要改进,希望日后的接触能使我更加熟练。
四知识点归纳
1 开头格式需熟记。
2 细节需谨慎,如引号,输入输出的括号的发现等。
3 输入不需要双引号。