C++ Primer Plus第三章编程练习

2024-09-03 04:32

本文主要是介绍C++ Primer Plus第三章编程练习,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

C++ Primer Plus第三章编程练习

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

1

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

#include <iostream>const int translation = 12;
int main()
{using namespace std;int len = 0, inch = 0;double foot = 0;cout<<"Please input your height(inch):____\b\b\b\b";cin>>len;foot = (double)len / (double)translation;cout<<"Your height in inch :"<<len<<endl;cout<<"Your height in foot_inch :"<<foot<<endl;return 0;
}

2

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

#include <iostream>const float inch_metre = 0.0254;
const float foot_inch = 12;
const float kg_pound = 2.2;int main()
{using namespace std;float height_foot, height_inch, height_metre, weight_pound, weight_kg, BMI;cout<<"Please input the foot:____\b\b\b\b";cin>>height_foot;cout<<"Please input the inch:____\b\b\b\b";cin>>height_inch;height_metre = (height_foot * foot_inch + height_inch) * inch_metre;cout<<"Please input the weight:____\b\b\b\b";cin>>weight_pound;weight_kg = weight_pound / kg_pound;BMI = weight_kg / (height_metre * height_metre);cout<<"The BMI = "<<BMI<<endl;return 0;
}

3

编写一个程序,要求用户以度、分、秒的方式输入一个纬度,然后以度为单位显示该纬度。1度为60分,1分等于60秒,请以符号常量的方式表示这些值。对于每个输入值,应使用一个独立的变量存储它。

#include <iostream>const int tranlation = 60;
using namespace std;
int calculate_degree(float degrees, float minutes, float seconds)
{float result;result = degrees + minutes / tranlation + seconds / tranlation / tranlation;cout<<degrees<<" degrees, "<<minutes<<" minutes, "<<seconds<<" seconds = "<<result<<" degrees."<<endl;return 0;
}int main()
{float degrees, minutes, seconds;cout<<"Enter a latitude in degrees, minutes, and seconds:"<<endl;cout<<"First, enter the degrees:___\b\b\b";cin>>degrees;cout<<"Next, enter the minutes of arc:___\b\b\b";cin>>minutes;cout<<"Finally, enter the seconds of arc:___\b\b\b";cin>>seconds;calculate_degree(degrees, minutes, seconds);return 0;
}

下图为输出结果:
输出结果

4

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

#include <iostream>const int day2hour = 24;
const int hour2min = 60;
const int min2second = 60;int main()
{using namespace std;long long input_seconds = 0, temp = 0;int day = 0, hour = 0, min = 0, seconds = 0;cout<<"Enter the number of seconds:____\b\b\b\b";cin>>input_seconds;day = input_seconds / (day2hour*hour2min*min2second);temp = input_seconds - day*day2hour*hour2min*min2second;hour = temp / (hour2min*min2second);temp = temp - hour * hour2min * min2second;min = temp / min2second;seconds = temp - min*min2second;cout<<input_seconds<<" seconds = "<<day<<" days, "<<hour<<" hours, "<<min<<" minutes, "<<seconds<<" seconds."<<endl;return 0;
}

下图为输出结果:
输出结果

5

编写一个程序,要求用户输入全球当前的人口和美国当前的人口(或其他国家的人口)。将这些信息存储在long long变量中,并让程序显示美国(或其他国家)的人口占全球人口的百分比。

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

6

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

#include <iostream>int main()
{using namespace std;double mile, gallon, km, litre;cout<<"Enter the mile of distance:____\b\b\b\b";cin>>mile;cout<<"Enter the gas of gallon:____\b\b\b\b";cin>>gallon;cout<<"Your can run "<<mile/gallon<<" mile with one gallon gas."<<endl;cout<<"Enter the km of distance:____\b\b\b\b";cin>>km;cout<<"Enter the gas of litre:____\b\b\b\b";cin>>litre;cout<<"100 km cost "<<100*litre/km<<"L gas."<<endl;return 0;
}

7

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

#include <iostream>int main()
{using namespace std;double Euro_style, US_style;cout<<"Enter the European style(liters per 100km):____\b\b\b\b";cin>>Euro_style;US_style = 62.14 * 3.875 / Euro_style;cout<<"Trans to US style(miles per gallon): "<<US_style<<" mpg"<<endl;return 0;
}

这篇关于C++ Primer Plus第三章编程练习的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1132027

相关文章

将Mybatis升级为Mybatis-Plus的详细过程

《将Mybatis升级为Mybatis-Plus的详细过程》本文详细介绍了在若依管理系统(v3.8.8)中将MyBatis升级为MyBatis-Plus的过程,旨在提升开发效率,通过本文,开发者可实现... 目录说明流程增加依赖修改配置文件注释掉MyBATisConfig里面的Bean代码生成使用IDEA生

揭秘Python Socket网络编程的7种硬核用法

《揭秘PythonSocket网络编程的7种硬核用法》Socket不仅能做聊天室,还能干一大堆硬核操作,这篇文章就带大家看看Python网络编程的7种超实用玩法,感兴趣的小伙伴可以跟随小编一起... 目录1.端口扫描器:探测开放端口2.简易 HTTP 服务器:10 秒搭个网页3.局域网游戏:多人联机对战4.

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Java并发编程必备之Synchronized关键字深入解析

《Java并发编程必备之Synchronized关键字深入解析》本文我们深入探索了Java中的Synchronized关键字,包括其互斥性和可重入性的特性,文章详细介绍了Synchronized的三种... 目录一、前言二、Synchronized关键字2.1 Synchronized的特性1. 互斥2.

Spring Boot结成MyBatis-Plus最全配置指南

《SpringBoot结成MyBatis-Plus最全配置指南》本文主要介绍了SpringBoot结成MyBatis-Plus最全配置指南,包括依赖引入、配置数据源、Mapper扫描、基本CRUD操... 目录前言详细操作一.创建项目并引入相关依赖二.配置数据源信息三.编写相关代码查zsRArly询数据库数

C++ 中的 if-constexpr语法和作用

《C++中的if-constexpr语法和作用》if-constexpr语法是C++17引入的新语法特性,也被称为常量if表达式或静态if(staticif),:本文主要介绍C++中的if-c... 目录1 if-constexpr 语法1.1 基本语法1.2 扩展说明1.2.1 条件表达式1.2.2 fa

Python异步编程中asyncio.gather的并发控制详解

《Python异步编程中asyncio.gather的并发控制详解》在Python异步编程生态中,asyncio.gather是并发任务调度的核心工具,本文将通过实际场景和代码示例,展示如何结合信号量... 目录一、asyncio.gather的原始行为解析二、信号量控制法:给并发装上"节流阀"三、进阶控制

C++中::SHCreateDirectoryEx函数使用方法

《C++中::SHCreateDirectoryEx函数使用方法》::SHCreateDirectoryEx用于创建多级目录,类似于mkdir-p命令,本文主要介绍了C++中::SHCreateDir... 目录1. 函数原型与依赖项2. 基本使用示例示例 1:创建单层目录示例 2:创建多级目录3. 关键注

C++从序列容器中删除元素的四种方法

《C++从序列容器中删除元素的四种方法》删除元素的方法在序列容器和关联容器之间是非常不同的,在序列容器中,vector和string是最常用的,但这里也会介绍deque和list以供全面了解,尽管在一... 目录一、简介二、移除给定位置的元素三、移除与某个值相等的元素3.1、序列容器vector、deque

C++常见容器获取头元素的方法大全

《C++常见容器获取头元素的方法大全》在C++编程中,容器是存储和管理数据集合的重要工具,不同的容器提供了不同的接口来访问和操作其中的元素,获取容器的头元素(即第一个元素)是常见的操作之一,本文将详细... 目录一、std::vector二、std::list三、std::deque四、std::forwa