C++ Primier Plus(第六版) 第三章 编程练习答案

2022/1/18 1:05:11

本文主要是介绍C++ Primier Plus(第六版) 第三章 编程练习答案,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

本题要求输入转换为不同的格式,实质上考查的是求模和求商。
这里要求使用下滑线指示输入位置,需要使用'\b'使光标向前退,身高以英尺为单位应该是三个数,因此输入三个下划线三个'\b',程序如下:

#include<iostream>
int main()
{
	using namespace std;
	const int inch_per_foot =12;
	int height;
	cout << "Enter your height in inch:___\b\b\b";
	cin >> height;
	int foot = height / inch_per_foot;
	int inch = height % inch_per_foot;
	cout << "Your height is " << foot <<" feet, " <<inch <<" inches."<<endl;
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image

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

本题考查单位的转换,与第一题类似,身高以几英尺几英寸的方式输入,转换成m需要两步,程序如下:

#include<iostream>
int main()
{
	using namespace std;
	const int inch_per_foot = 12;
	const double meters_per_inch = 0.0254;
	const double pounds_per_kg = 2.2;
	int feet,inches;
	cout << "Enter your height in feet and inches: "<< endl;
	cout << "First, enter feet: __\b\b";
	cin >> feet;
	cout << "Second, enter inches: __\b\b";
	cin >> inches;
	cout << "Enter you weight in pound:___\b\b\b";
	double pounds;
	cin >> pounds;
	int height_inch = feet * inch_per_foot + inches;
	double height_m = height_inch * meters_per_inch;
	double weight = pounds / pounds_per_kg;
	double BMI = weight / (height_m * height_m);

	cout << "Your BMI is " << BMI <<endl;
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image

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, 19seconds = 37.8553 degrees

本题与前两题类似,按照题目要求编写程序即可,程序如下:

#include<iostream>
int main()
{
	using namespace std;
	int degrees, minutes,seconds;
	cout << "Enter a latitude in degrees, minutes, and seconds: " << endl;
	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;
	double latitude;
	latitude = degrees + minutes / 60.0 + seconds / 3600.0;
	cout << degrees << " degrees, " << minutes << " minutes, ";
	cout << seconds << " seconds = " << latitude << " degrees" << endl;
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image

4. 编写一个程序,要求用户以整数方式输入秒数(使用long或long long变量存储),然后以天、小时、分钟和秒的方式显示这段时间。使用符号常量来表示每天有多少小时、每小时有多少分钟以及每分钟有多少秒。该程序的输出应与下面类似:

Enter the number of seconds: 31600000
31600000 seconds = 365 days, 17 hours, 46 minutes, 40 seconds

本题要求用户输入一个秒数,然后转换为天数+小时数+分钟数+秒数,相当于把之前的英尺+英寸转换为英寸的题目反过来计算,程序如下:

#include<iostream>
int main()
{
	using namespace std;
	long long seconds;
	cout << "Enter the number of seconds: ";
	cin >> seconds;

	int second, minute, hour, days;
	second = seconds % 60;
	long minutes = seconds / 60;
	minute = minutes % 60;
	long hours = minutes / 60;
	hour = hours % 24;
	days = hours / 24;
	
	cout << seconds <<" seconds = " << days <<" days, " << hour;
	cout << " hours, " << minute <<" minutes, " << second << "seconds" <<endl;
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image

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>
int main()
{
	using namespace std;
	long long pp_us, pp_world;
	cout << "Enter the worlds's population: ";
	cin >> pp_world;
	cout << "Enter the population of US: ";
	cin >> pp_us;
	double percentage = double(pp_us) / double(pp_world) * 100;
	cout.precision(6);
	cout << "The population of US is " << percentage;
	cout << "% of the world population." <<endl;
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image

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

本题与前面的计算BMI很类似,程序如下:

//ex6.cpp - - mpg convert to l/100km
#include<iostream>
int main()
{
	using namespace std;
	double m,g; // mlie ,garlon
	cout << "Enter the mile: ";
	cin >> m;
	cout << "Enter the garlon: ";
	cin >> g;
	cout << "The mile per garlon is " << m / g << " mpg." << endl;
	double l = g * 3.875 / (m / 62.14);
	cout << "The fuel consumption is " << l << "L/100Km.";
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image

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

本题不算难,是第六题的相反过程,程序如下:

//ex6.cpp - - l/100km convert to mpg
#include<iostream>
int main()
{
	using namespace std;
	const double m_per_100km = 62.14;
	const double l_per_g = 3.875;
	double l; // mlie ,garlon
	cout << "Enter the fuel comsuption per 100 km: ";
	cin >> l;
	double m = m_per_100km / (l / l_per_g);
	cout << l <<" L/100km = " << m << " mpg" <<endl;
	cin.get();
	cin.get();
	return 0;
}

运行结果如下:
image



这篇关于C++ Primier Plus(第六版) 第三章 编程练习答案的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程