21xrx.com
2024-11-05 14:59:25 Tuesday
登录
文章检索 我的文章 写文章
《C++大学教程第九版》2.21题答案
2023-07-05 05:14:05 深夜i     --     --
C++ 大学教程 第9版 21题 答案

在学习C++编程语言的过程中,《C++大学教程第九版》是一本非常优秀的教材,题目2.21是本书中比较典型的问题,下面给出此题的具体答案。

题目描述:

将英寸转换为英尺与英寸的总和,输出转换结果,并使用下划线标出输出数字。

解题思路:

题目要求将英寸转换成英尺与英寸的总和,因此需要对输入的英寸进行计算,并输出转换结果。由于需要使用下划线标出输出数字,因此需要使用转义字符“\t”来使输出对齐。根据转换公式1英尺=12英寸,可以用以下公式对输入的英寸进行转换:

英尺 = 英寸 / 12

英寸 = 英寸 % 12

使用此公式可以得到转换结果。具体实现过程如下:

#include

using namespace std;

int main()

{

  int inches, feet, total_inches;

  cout << "Enter the number of inches: ";

  cin >> inches;

  feet = inches / 12;

  total_inches = inches % 12;

  cout << "The length in feet and inches is: " << feet << "\'" << total_inches << "\"" << endl;

  cout << "The total length in inches is: " << feet << " feet, " << total_inches << " inches." << endl;

  cout << "The total length in inches with underscores is: " << feet << "_foot_" << total_inches << "_inches." << endl;

  return 0;

}

在此代码中,首先定义了三个整型变量inches,feet和total_inches,分别用于存储输入的英寸、转换后的英尺和剩余的英寸数量。然后通过cin语句接受用户的输入,使用公式进行计算,最后利用cout语句输出转换结果。在输出时使用了转义字符"\t"和""来使结果对齐,并利用下划线将输出的数字标出。

总的来说,这道题目是一道非常典型的初学者练习题,通过完成此题可以帮助C++语言的初学者更好地理解C++的基本语法,以及实现基本的输入输出功能。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复
    相似文章