C++ Primer Plus第六版 第三章 编程练习答案

来源:互联网 发布:js从小到大排序 编辑:程序博客网 时间:2024/04/30 11:18
/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第1题Problem : 编写一个小程序。要求用户使用一个整数指出自己的身高(单位为英寸),然后将身高转换为英尺和英寸。该程序使用下划线字符来指示输入位置。另外,使用一个const符号常量来表示转换因子。*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout << "请输入您的身高(单位英寸):___\b\b\b";int h = 0;cin >> h;//输入身高const int CHG = 12;//定义转换因子cout << "您的身高是" << h / 12 << "英尺," << h % 12 << "英寸" << endl;return 0;}

/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第2题Problem : 编写一个小程序,要求以几英尺几英寸的方式输入其身高,并以磅为单位输入其体重。(使用3个变量来存储这些信息。)该程序报告其BMI(Body Mass Index,体重指数)。为了计算BMI,该程序以英寸的方式指出用户的身高(1英尺为12英寸),并将以英寸为单位的身高转换为以米为单位的身高(1英寸=0.0254米)。然后,将以磅为单位的体重转换为以千克为单位的体重(1千克=2.2磅)。最后,计算相应的BMI——体重(千克)除以身高(米)的平方。用符号常量表示各种转换因子。*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout << "请输入您的身高(以英尺 英寸”的方式输入):";int h_ft = 0;//输入英尺int h_in = 0;//输入英寸cin >> h_ft >> h_in;cout << "请输入您的体重(单位:磅):";int w = 0;//输入磅cin >> w;const int FT_TO_IN = 12;//转换因子const double IN_TO_M = 0.0254;const double P_TO_KG = 1 / 2.2;cout << "您的BMI是:" << (w * P_TO_KG) / (((h_ft * FT_TO_IN) + h_in) * IN_TO_M) << endl;return 0;}

/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第3题Problem : 编写一个程序,要求用户以度、分、秒的方式输入一个纬度,然后以度为单位显示该纬度。1度为60分,1分等于60秒,请以符号常量的方式表示这些值。对于每个输入值,应使用一个独立的变量存储它。下面是该程序运行时的情况:Enter a latitude in degrees , minutes, and seconds:First , enter the degrees: 37Next , enter the minutes of arc: 51Finally, enter the seconds of arc 19;37 degrees , 51minutes , 19 seconds = 37.8553 degrees*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout << "Enter a latitude in degrees , minutes , and seconds:" << endl << "First , enter the degrees: ";int degrees = 0;//度cin >> degrees;cout << "Next , enter the minutes of arc: ";int minutes = 0;//分cin >> minutes;cout << "Finally , enter the seconds of arc: ";int seconds = 0;//秒cin >> seconds;const double SECONDS_TO_MINUTES = double(1) / double(60);//转换因子 注意这里要把1和60作为浮点数 否则 1 / 60 = 0const double MINUTES_TO_DEGREES = double(1) / double(60);cout << degrees << " degrees , " << minutes << " minutes , " << seconds << " seconds = " << (seconds * SECONDS_TO_MINUTES + minutes) * MINUTES_TO_DEGREES + degrees << " degrees" << endl;return 0;}

/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第4题Problem : 编写一个程序,要求用户以整数方式输入秒数(使用long或long long变量存储),然后以天、小时、分钟和秒的方式显示这段时间。使用符号常量来表示每天有多少小时、每小时有多少分钟一集每分钟有多少秒。该程序的输出应与下列类似:Enter the number of seconds: 3160000031600000 seconds = 365 days, 17 hours , 46 minutes , 40 seconds*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout << "Enter the number of seconds: ";long long seconds = 0;//输入秒cin >> seconds;const int SECONDS_TO_MINUTES = 60;//转换因子const int MINUTES_TO_HOURS = 60;const int HOURS_TO_DAYS = 24;cout << seconds << " seconds = " << seconds / SECONDS_TO_MINUTES / MINUTES_TO_HOURS / HOURS_TO_DAYS << " days, " << seconds / SECONDS_TO_MINUTES / MINUTES_TO_HOURS % HOURS_TO_DAYS << " hours, " << seconds / SECONDS_TO_MINUTES %MINUTES_TO_HOURS << " minutes, " << seconds % SECONDS_TO_MINUTES << " seconds." <<endl;return 0;}

/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第5题Problem : 编写一个程序,要求用户输入全球当前的人口和美国当前的人口(或其他国家的人口)。将这些信息存储在long long变量中,并让程序显示美国(或其他国家)的人口占全球人口的百分比。该程序的输出应与下面类似:Enter the world's population: 6898758899Enter the population of the US: 310783781The population of the US is 4.50492% of the world population.*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout << "Enter the world's population: ";long long p_g = 0;//全球当前人口cin >> p_g;cout << "Enter the population of the US: ";long long p_a = 0;//美国当前人口cin >> p_a;cout << "The population of the US is " << (double)p_a / (double)p_g << "% of the world population." << endl;return 0;}

/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第6题Problem : 编写一个程序,要求用户输入驱车里程(英里)和使用汽油量(加仑),然后指出汽车耗油量为一加仑的里程。如果愿意,也可以让程序要求用户以公里为单位输入距离,并以升为单位输入汽油量,然后指出欧洲风格的结果——即每100公里的耗油量(升)*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout <<"请输入驱车里程(英里): ";int len = 0;cin >> len;cout << "请输入使用汽油量(加仑): ";int v = 0;cin >> v;cout << "汽车耗油量为一加仑的里程: " << (double)len / (double)v << endl;cout << "请输入距离(公里): ";cin >> len;cout << "请输入汽油量: ";cin >> v;cout << "每100公里的耗油量(升): " << (double)v / (double)len * 100 << endl;return 0;}

/*******************************************************************************************************************Author : YuujiBlog : blog.csdn.net/acm_yuujiTime : 2014/06/30From : C++ Primer Plus第六版第三章编程练习 第7题Problem : 编写一个程序,要求用户按欧洲风格输入汽车的耗油量(每100公里消耗的汽油量(升)),然后将其转换为美国风格的耗油量——每加仑多少英里。注意,除了使用不同的单位计量外,美国方法(距离/燃料)与欧洲方法(燃料/距离)相反。100公里等于62.14英里,1加仑等于3.875升。因此,19mpg大约合12.41/100km,127mpg大约合8.71/100km。*******************************************************************************************************************/#include <iostream>using namespace std;int main(){cout << "请输入欧洲风格的耗油量: ";double v = 0;cin >> v;const double Y_TO_G = 62.14;//英里转公里const double C_TO_V = 3.875;//加仑转升cout << "美国风格耗油量为: " << Y_TO_G * C_TO_V / v << endl;return 0;}


0 0
原创粉丝点击