c++ primer plus 课后练习记录 第三章

3.7.1
编写一个程序,要求用户使用一个整数指出自己的身高(单位为英寸),然后将身高转换为英尺和英寸。该程序使用下划线字符来指示输入位置。另外,使用一个const符号常量来表示转换因子。

#include <iostream>
using namespace std;
const int in_to_ft=12;
int main()
{
    int in_height;
    cout<<"请输入身高:__\b\b";
    cin>>in_height;
    int ft_height;
    int in_rest;
    ft_height=in_height/in_to_ft;
    in_rest=in_height%in_to_ft;
    cout<<"你的身高是:"<<ft_height<<" 英尺 "<<in_rest<<" 英寸\n";
    return 0;
}

3.7.2
编写一个小程序,要求以几英尺几英寸的方式输入其身高,并以磅为单位输入其体重。(使用三个变量来储存这些信息。)该程序报告其BMI(Body Mass Index,体重指数)。为了计算BIM,该程序以英寸的方式指出用户的身高(一英尺为12英寸),并将以英寸为单位的身高装换为以米为单位的身高(1英寸=0.0254米)。然后,将以磅为单位的体重转换为以千克为单位的体重(1千克=2.2磅)。最后,计算相应的BMI——体重(千克)除以身高(米)的平方。用符号常量表示各种转换因子。

#include <iostream>
using namespace std;
const int in_to_ft=12;
const double in_to_meter=0.0254;
const double kg_to_lb=2.2;
double BMI(int foot,int inch,double pound);
int main()
{
    int height_foot,height_inch,weight;
    cout<<"您的身高是(分别输入英尺和英寸):\n";
    cin>>height_foot ;
    cin>>height_inch;
    cout<<"您的体重是多少磅:";
    cin>>weight;
    cout<<"您的BIM是:"<<BMI(height_foot,height_inch,weight)<<endl;
    return 0;
}
double BMI(int foot,int inch,double pound)
{
    double weight;
    weight =pound /kg_to_lb;
    double height;
    height=(foot*in_to_ft+inch)*in_to_meter;
    return (weight/(height*height));
}

3.7.3
编写一个程序,要求用户以度、分、秒的方式输入一个纬度,然后以度为单位显示该纬度。1度为60分,1分等于60秒,请以符号常量的方式表示这些值。对于每个输入值,应使用一个独立变量存储它。下面是该程序运行时的情况:
Enter a latitude in degrees, minutes, and seconds:
First, enter the degrees: 37
Next, enter the minutes of arc: 51
Finally, enter the seconds of arc: 19
37 degrees, 51 minutes,19 seconds = 37.8553 degrees

#include <iostream>
using namespace std;
const double factor=60;
double fanal_degrees(int degrees,int minutes,int seconds);
int main()
{
    int degrees,minutes,seconds;
    cout<<"Enter a latitude in degrees,minutes,and seconds:\n";
    cout<<"First,enter the degrees:";
    cin>>degrees;
    cout<<"Next,enter the minutes of arc:";
    cin>>minutes;
    cout<<"Finally,enter the seconds of arc:";
    cin>>seconds;
    cout<<degrees<<" degrees, "<<minutes<<" minutes, "<<seconds<<" seconds = "
	    <<fanal_degrees(degrees,minutes,seconds)
	    <<" degrees\n";
    return 0;
}
double fanal_degrees(int degrees,int minutes,int seconds)
{
    return(degrees+minutes/factor+seconds/factor/factor);
}

3.7.4
编写一个程序,要求用户以整数方式输入秒数(使用long或long long变量存储),然后以天、小时、分钟和秒的方式显示这段时间。使用符号常量来表示每天有多少小时、每小时有多少分钟以及每分钟有多少秒。该程序的输出应与下面类似:
Enter the number of seconds: 31600000
31600000 seconds = 365 days, 17 hours, 46 minutes, 40 seconds

#include <iostream>
using namespace std;
const int hours_of_a_day=24;
const int minutes_of_an_hour=60;
const int seconds_of_a_minute=60;
void transform(long Seconds);
int main()
{
    cout<<"Enter the number of seconds: ";
    long Seconds;
    cin>>Seconds;
    transform(Seconds);
    return 0;
}
void transform(long Seconds)
{
    int days,hours,minutes,seconds;
    int mod_day,mod_hour;
    days=Seconds/(hours_of_a_day *minutes_of_an_hour *seconds_of_a_minute );
    mod_day=Seconds%(hours_of_a_day *minutes_of_an_hour *seconds_of_a_minute );
    hours=mod_day/(minutes_of_an_hour *seconds_of_a_minute);
    mod_hour=mod_day%(minutes_of_an_hour *seconds_of_a_minute);
    minutes=mod_hour/seconds_of_a_minute;
    seconds=mod_hour%seconds_of_a_minute;
    cout<<Seconds<<" seconds = "
		<<days<<" days, "
		<<hours<<" hours, "
		<<minutes<< " minutes, "
		<<seconds<<" seconds\n";
}

3.7.5
编写一个程序,要求用户输入全球当前的人口数和美国当前的人口(或其他国家的人口)。将这些信息存储在long long变量中,并让程序显示美国(或其他国家)的人口占全球人口的百分比。该程序的输出应与下面类似:
Enter the world’s population: 6898758899
Enter the population of the US: 310783781
The population of the US is 4.50492% of the world population.

#include <iostream>
using namespace std;
int main()
{
    long long world_population,us_population;
    cout<<"Enter the world's population: ";
    cin>>world_population;
    cout<<"Enter the population of the US:";
    cin>>us_population;
    cout<<"The population of the US is "
		<<double (us_population)/double (world_population)*100
		<<"% of the world population.\n";
    return 0;
}

3.7.6
编写一个程序,要求用户输入驱车里程(英里)和使用汽油量(加仑),然后指出汽油量为一加仑的里程。如果愿意,也可以让程序要求以公里为单位输入距离,并以升为单位输入单位汽油量,然后指出欧洲风格的结果——即每100公里的耗油量(升)。

#include <iostream>
using namespace std;
int main()
{
    double trip,oil;
    cout<<"请输入行驶距离(千米):";
    cin>>trip;
    cout<<"请输入汽油量(升):";
    cin>>oil;
    cout<<"每百公里耗油量为:"<<oil/trip*100<<endl;
    return 0;
}

3.7.7
编写一个程序,要求用户按照欧洲风格输入汽车的油耗量(每100公里消耗的汽油量(升)),然后将其转换为美国风格的油耗量——每加仑多少英里。注意,除了使用不同的单位计量外,美国方法(距离/燃料)与欧洲方法(燃料/距离)相反。100公里等于62.14英里,一加仑等于3.875升。因此,19mpg大约合12.41/100km,27mpg大约合8.71/100km。

#include <iostream>
using namespace std;
int mpg(double FCPH);
int main()
{
    cout<<"请输入百公里油耗:";
    double FCPH;
    cin>>FCPH;
    cout<<"每加仑能行驶"<<mpg(FCPH)<<"英里。\n";
    return 0;
}
int mpg(double FCPH)
{
    return(62.14*3.85/FCPH);
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值