【明解c语言中级篇 第一章练习答案】

2024-06-17 02:36

本文主要是介绍【明解c语言中级篇 第一章练习答案】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

第一章练习答案

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

1-1

 编写一个“抽签”的程序,生成0~6的随机数,根据值来显示“大吉”“中吉”“小吉”“吉”“末吉”“凶”“大凶”。

#include <iostream>
#include <ctime>
using namespace std;int main()
{srand(time(NULL));int ans = rand() % 7;    //要生成0-6 则用rand()% 7   // rand() % (a + 1)      //生成大于等于0 && 小于a 的随机整数switch (ans){case 0:cout << "大吉" << endl;break;case 1:cout << "中吉" << endl;break;case 2:cout << "小吉" << endl;break;case 3:cout << "吉" << endl;break;case 4:cout << "末吉" << endl;break;case 5:cout << "凶" << endl;break;case 6:cout << "大凶" << endl;break;}return 0;
}

1-2

 把上一练习中的程序加以改良,使求出某些运势的概率与求出其他运势的概率不相等(例如可以把求出“末吉”“凶”“大凶”的概率减小)。

#include <iostream>
#include <ctime>
using namespace std;int main()
{srand(time(NULL));int randValue = rand() % 100; // 生成0到99之间的随机数string fortune;if (randValue < 20) {            // 20%概率fortune = "大吉";} else if (randValue < 40) {     // 20%概率fortune = "中吉";} else if (randValue < 60) {     // 20%概率fortune = "小吉";} else if (randValue < 75) {     // 15%概率fortune = "吉";} else if (randValue < 85) {     // 10%概率fortune = "末吉";} else if (randValue < 95) {     // 10%概率fortune = "凶";} else {                         // 5%概率fortune = "大凶";}cout << fortune << endl;return 0;
}

1-3

 编写一个“猜数游戏”,让目标数字是一个在-999和999之间的整数。同时还需思考应该把玩家最多可输人的次数定在多少合适。

#include <iostream>
#include <ctime>
#define MAX_ATTEMPTS 10
using namespace std;int main()
{srand(time(NULL));int ans = -999 + rand() % 1999; // 生成 -999 到 999 之间的随机数int guess = 0, attempts = 0;cout << "猜数游戏开始!目标数字在 -999 到 999 之间。" << endl;cout << "你有 " << MAX_ATTEMPTS << " 次机会来猜这个数字。" << endl;do{cout << "请输入你的猜测:";cin >> guess;attempts++;if (guess < ans){cout << "猜小了" << endl;}else if (guess > ans){cout << "猜大了" << endl;}} while (guess != ans && attempts < MAX_ATTEMPTS);if (guess == ans){cout << "恭喜你,猜中了!用了 " << attempts << " 次。" << endl;}else{cout << "很遗憾,你已经用完了所有的机会。目标数字是 " << ans << "。" << endl;}return 0;
}

1-4

 编写一个“猜数游戏”,让目标数字是一个在3和999之间的3的倍数(例如3,6,9,,999)。编写以下两种功能:一种是当输人的值不是3的倍数时,游戏立即结束;另一种是当输人的值不是3的倍数时,不显示目标数字和输人的数值的比较结果,直接让玩家再次输入新的数值(不作为输人次数计数)。

//功能一:当输入的值不是3的倍数时,游戏立即结束
#include <iostream>
#include <ctime>
using namespace std;int main()
{srand(time(NULL));int ans = 3 + (rand() % 333) * 3; // 生成3到999之间的3的倍数int guess = 0, attempts = 0, maxAttempts = 10;cout << "猜数游戏开始!目标数字是3到999之间的3的倍数。" << endl;cout << "你有 " << maxAttempts << " 次机会来猜这个数字。" << endl;while (attempts < maxAttempts){cout << "请输入你的猜测:";cin >> guess;if (guess % 3 != 0){cout << "输入的值不是3的倍数,游戏结束。" << endl;break;}attempts++;if (guess < ans){cout << "猜小了" << endl;}else if (guess > ans){cout << "猜大了" << endl;}else{cout << "恭喜你,猜中了!用了 " << attempts << " 次。" << endl;break;}if (attempts == maxAttempts){cout << "很遗憾,你已经用完了所有的机会。目标数字是 " << ans << "。" << endl;}}return 0;
}
//功能二:当输入的值不是3的倍数时,直接让玩家再次输入新的数值(不作为输入次数计数)
#include <iostream>
#include <ctime>
using namespace std;int main()
{srand(time(NULL));int ans = 3 + (rand() % 333) * 3; // 生成3到999之间的3的倍数int guess = 0, attempts = 0, maxAttempts = 10;cout << "猜数游戏开始!目标数字是3到999之间的3的倍数。" << endl;cout << "你有 " << maxAttempts << " 次机会来猜这个数字。" << endl;while (attempts < maxAttempts){cout << "请输入你的猜测:";cin >> guess;if (guess % 3 != 0){cout << "输入的值不是3的倍数,请重新输入。" << endl;continue; // 跳过当前循环,不增加尝试次数}attempts++;if (guess < ans){cout << "猜小了" << endl;}else if (guess > ans){cout << "猜大了" << endl;}else{cout << "恭喜你,猜中了!用了 " << attempts << " 次。" << endl;break;}if (attempts == maxAttempts){cout << "很遗憾,你已经用完了所有的机会。目标数字是 " << ans << "。" << endl;}}return 0;
}

1-5

 编写一个“猜数游戏”,不事先决定目标数字的范围,而是在运行程序时才用随机数决定目标数字。打个比方,如果生成的两个随机数是23和8124,那么玩家就需要猜一个在23和8124之间的数字。

使用了int maxAttempts = log2(range) + 1; 对数函数计算尝试次数。

#include <iostream>
#include <ctime>
#include <cmath> // 用于计算尝试次数using namespace std;int main()
{srand(time(NULL));int ans1 = rand();int ans2 = rand();// 确保 ans1 > ans2if (ans1 < ans2){int tmp = ans1;ans1 = ans2;ans2 = tmp;}// 生成 ans2 和 ans1 之间的随机数int ans = ans2 + rand() % (ans1 - ans2 + 1);// 根据范围自动计算最多的尝试次数(例如,使用对数函数)int range = ans1 - ans2 + 1;int maxAttempts = log2(range) + 1; // 使用对数函数计算尝试次数int attempts = 0;int guess = 0;cout << "猜测一个在 " << ans2 << " 和 " << ans1 << " 之间的数字。" << endl;cout << "你有 " << maxAttempts << " 次机会。" << endl;while (attempts < maxAttempts){cout << "请输入你的猜测:";cin >> guess;attempts++;if (guess < ans){cout << "猜小了" << endl;}else if (guess > ans){cout << "猜大了" << endl;}else{cout << "恭喜你,猜中了!用了 " << attempts << " 次。" << endl;break;}if (attempts == maxAttempts){cout << "很遗憾,你已经用完了所有的机会。目标数字是 " << ans << "。" << endl;}}return 0;
}

1-6

#include <iostream>
#include <ctime>
#include <cmath> // 用于计算尝试次数using namespace std;int main()
{srand(time(NULL));int minRange = 1, maxRange = 9;int choice;cout << "请选择难度等级:" << endl;cout << "(1) 1~9" << endl;cout << "(2) 1~99" << endl;cout << "(3) 1~999" << endl;cout << "(4) 1~9999" << endl;cin >> choice;switch (choice){case 1:maxRange = 9;break;case 2:maxRange = 99;break;case 3:maxRange = 999;break;case 4:maxRange = 9999;break;default:cout << "无效的选择,默认为难度等级1(1~9)" << endl;maxRange = 9;}int ans = minRange + rand() % (maxRange - minRange + 1);// 根据范围自动计算最多的尝试次数(例如,使用对数函数)int range = maxRange - minRange + 1;int maxAttempts = log2(range) + 1; // 使用对数函数计算尝试次数int attempts = 0;int guess = 0;cout << "猜测一个在 " << minRange << " 和 " << maxRange << " 之间的数字。" << endl;cout << "你有 " << maxAttempts << " 次机会。" << endl;while (attempts < maxAttempts){cout << "请输入你的猜测:";cin >> guess;attempts++;if (guess < ans){cout << "猜小了" << endl;}else if (guess > ans){cout << "猜大了" << endl;}else{cout << "恭喜你,猜中了!用了 " << attempts << " 次。" << endl;break;}if (attempts == maxAttempts){cout << "很遗憾,你已经用完了所有的机会。目标数字是 " << ans << "。" << endl;}}return 0;
}

1-7

 使用List1-8的程序时,即使玩家所猜数字和正确答案的差值是0,输人记录的显示结果也会带有符号,这样不太好看。请大家改进一下程序,让差值0不带符号。

#include <time.h>
#include <stdio.h>
#include <stdlib.h>#define MAX_STAGE 10  // 最多可以输入的次数int main(void)
{int i;  // 计数器int stage;  // 已输入的次数int no;  // 读取的值int ans;  // 目标数字int num[MAX_STAGE];  // 读取的值的历史记录srand(time(NULL));  // 设定随机数的种子ans = rand() % 1000;  // 生成0~999的随机数printf("请猜一个0~999的整数。\n\n");stage = 0;do{printf("还剩%d次机会。是多少呢:", MAX_STAGE - stage);scanf("%d", &no);num[stage++] = no;  // 把读取的值存入数组if (no > ans)printf("\a再小一点。\n");else if (no < ans)printf("\a再大一点。\n");} while (no != ans && stage < MAX_STAGE);if (no != ans)printf("\a很遗憾,正确答案是%d。\n", ans);elseprintf("回答正确。\n");printf("您用了%d次猜中了。\n", stage);puts("\n---输入记录---");for (i = 0; i < stage; i++){int diff = num[i] - ans;if (diff == 0)printf("%2d: %4d\n", i + 1, num[i]);  // 差值为0时不显示符号elseprintf("%2d: %4d %+4d\n", i + 1, num[i], diff);  // 显示差值并带符号}return 0;
}

1-8

 把List1-8里的do语句改写成for语句。

#include <time.h>
#include <stdio.h>
#include <stdlib.h>#define MAX_STAGE 10  // 最多可以输入的次数int main(void)
{int i;  // 计数器int stage;  // 已输入的次数int no;  // 读取的值int ans;  // 目标数字int num[MAX_STAGE];  // 读取的值的历史记录srand(time(NULL));  // 设定随机数的种子ans = rand() % 1000;  // 生成0~999的随机数printf("请猜一个0~999的整数。\n\n");for (stage = 0; stage < MAX_STAGE; stage++){printf("还剩%d次机会。是多少呢:", MAX_STAGE - stage);scanf("%d", &no);num[stage] = no;  // 把读取的值存入数组if (no > ans)printf("\a再小一点。\n");else if (no < ans)printf("\a再大一点。\n");else{printf("回答正确。\n");break;}}if (stage == MAX_STAGE)printf("\a很遗憾,正确答案是%d。\n", ans);if(stage != MAX_STAGE)printf("您用了%d次猜中了。\n", stage + 1);puts("\n---输入记录---");for (i = 0; i <= stage; i++)  // 修改循环条件为 <= stage{if (i + 1 == 11)   break;int diff = num[i] - ans;if (diff == 0)printf("%2d: %4d %+4d\n", i + 1, num[i],0);  // 差值为0时不显示符号elseprintf("%2d: %4d %+4d\n", i + 1, num[i], diff);  // 显示差值并带符号}return 0;
}

这篇关于【明解c语言中级篇 第一章练习答案】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

使用SQL语言查询多个Excel表格的操作方法

《使用SQL语言查询多个Excel表格的操作方法》本文介绍了如何使用SQL语言查询多个Excel表格,通过将所有Excel表格放入一个.xlsx文件中,并使用pandas和pandasql库进行读取和... 目录如何用SQL语言查询多个Excel表格如何使用sql查询excel内容1. 简介2. 实现思路3

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

Go语言使用Buffer实现高性能处理字节和字符

《Go语言使用Buffer实现高性能处理字节和字符》在Go中,bytes.Buffer是一个非常高效的类型,用于处理字节数据的读写操作,本文将详细介绍一下如何使用Buffer实现高性能处理字节和... 目录1. bytes.Buffer 的基本用法1.1. 创建和初始化 Buffer1.2. 使用 Writ

深入理解C语言的void*

《深入理解C语言的void*》本文主要介绍了C语言的void*,包括它的任意性、编译器对void*的类型检查以及需要显式类型转换的规则,具有一定的参考价值,感兴趣的可以了解一下... 目录一、void* 的类型任意性二、编译器对 void* 的类型检查三、需要显式类型转换占用的字节四、总结一、void* 的

C语言线程池的常见实现方式详解

《C语言线程池的常见实现方式详解》本文介绍了如何使用C语言实现一个基本的线程池,线程池的实现包括工作线程、任务队列、任务调度、线程池的初始化、任务添加、销毁等步骤,感兴趣的朋友跟随小编一起看看吧... 目录1. 线程池的基本结构2. 线程池的实现步骤3. 线程池的核心数据结构4. 线程池的详细实现4.1 初

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

poj 3104 二分答案

题意: n件湿度为num的衣服,每秒钟自己可以蒸发掉1个湿度。 然而如果使用了暖炉,每秒可以烧掉k个湿度,但不计算蒸发了。 现在问这么多的衣服,怎么烧事件最短。 解析: 二分答案咯。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <c

RabbitMQ练习(AMQP 0-9-1 Overview)

1、What is AMQP 0-9-1 AMQP 0-9-1(高级消息队列协议)是一种网络协议,它允许遵从该协议的客户端(Publisher或者Consumer)应用程序与遵从该协议的消息中间件代理(Broker,如RabbitMQ)进行通信。 AMQP 0-9-1模型的核心概念包括消息发布者(producers/publisher)、消息(messages)、交换机(exchanges)、

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return