以数织图游戏C++代码

时间: 2023-10-08 19:14:29 浏览: 167
以下是一个简单的数织图游戏的 C++ 代码,其中包括了数织图的生成、打印和玩家填充的功能。请注意,该代码仅提供了基本框架,你可以根据自己的需求进行修改和扩展。 ``` #include <iostream> #include <vector> using namespace std; // 生成数织图的函数 vector<vector<int>> generateNonogram(int rows, int cols, vector<vector<int>>& rowHints, vector<vector<int>>& colHints) { vector<vector<int>> nonogram(rows, vector<int>(cols, -1)); // 初始化为-1 // 根据行提示和列提示生成数织图 for (int i = 0; i < rows; i++) { int index = 0; for (int j = 0; j < cols; j++) { if (nonogram[i][j] == -1) { if (index < rowHints[i].size() && j == rowHints[i][index]) { int len = rowHints[i][index + 1]; for (int k = j; k < j + len; k++) { nonogram[i][k] = 1; } j += len; index += 2; } } } } for (int j = 0; j < cols; j++) { int index = 0; for (int i = 0; i < rows; i++) { if (nonogram[i][j] == -1) { if (index < colHints[j].size() && i == colHints[j][index]) { int len = colHints[j][index + 1]; for (int k = i; k < i + len; k++) { nonogram[k][j] = 1; } i += len; index += 2; } } } } return nonogram; } // 打印数织图的函数 void printNonogram(vector<vector<int>>& nonogram, vector<vector<int>>& rowHints, vector<vector<int>>& colHints) { int rows = nonogram.size(); int cols = nonogram[0].size(); // 打印列提示 cout << " "; for (int j = 0; j < cols; j++) { int sum = 0; for (int i = 0; i < colHints[j].size(); i += 2) { sum += colHints[j][i + 1]; } int space = max(0, (int)rowHints[0].size() * 2 - sum); for (int k = 0; k < space / 2; k++) { cout << " "; } for (int i = 0; i < colHints[j].size(); i += 2) { int len = colHints[j][i + 1]; for (int k = 0; k < len; k++) { cout << colHints[j][i]; } for (int k = 0; k < 2; k++) { cout << " "; } } for (int k = 0; k < space - space / 2; k++) { cout << " "; } } cout << endl; // 打印数织图和行提示 for (int i = 0; i < rows; i++) { int sum = 0; for (int k = 0; k < rowHints[i].size(); k += 2) { sum += rowHints[i][k + 1]; } int space = max(0, (int)colHints[0].size() * 2 - sum); for (int k = 0; k < space / 2; k++) { cout << " "; } for (int k = 0; k < rowHints[i].size(); k += 2) { int len = rowHints[i][k + 1]; for (int j = 0; j < len; j++) { cout << rowHints[i][k]; } for (int j = 0; j < 2; j++) { cout << " "; } } for (int k = 0; k < space - space / 2; k++) { cout << " "; } for (int j = 0; j < cols; j++) { if (nonogram[i][j] == -1) { cout << "."; } else if (nonogram[i][j] == 0) { cout << " "; } else { cout << "#"; } cout << " "; } cout << endl; } } int main() { int rows, cols; cout << "请输入数织图的行数:"; cin >> rows; cout << "请输入数织图的列数:"; cin >> cols; // 输入行提示和列提示 cout << "请按行输入行提示(以-1结束):" << endl; vector<vector<int>> rowHints(rows); for (int i = 0; i < rows; i++) { int hint; while (true) { cin >> hint; if (hint == -1) { break; } rowHints[i].push_back(hint); } } cout << "请按列输入列提示(以-1结束):" << endl; vector<vector<int>> colHints(cols); for (int j = 0; j < cols; j++) { int hint; while (true) { cin >> hint; if (hint == -1) { break; } colHints[j].push_back(hint); } } // 生成数织图并打印 vector<vector<int>> nonogram = generateNonogram(rows, cols, rowHints, colHints); printNonogram(nonogram, rowHints, colHints); // 让玩家填充数织图 while (true) { int x, y, val; cout << "请输入要填充的行列号和数字(以-1结束):"; cin >> x >> y >> val; if (x == -1 || y == -1 || val == -1) { break; } nonogram[x][y] = val; printNonogram(nonogram, rowHints, colHints); } return 0; } ``` 在这个代码中,我们使用了 vector 容器来存储数织图、行提示和列提示。程序首先会让用户输入数织图的行列数和行列提示,然后根据这些提示生成数织图,并打印出数织图和行列提示。 程序会不断地询问玩家要填充的行列号和数字,直到玩家输入 -1。每次玩家输入后,程序会更新数织图,并打印出更新后的数织图和行列提示。 该代码只包含了基本的数织图游戏功能,你可以根据自己的需求进行修改和扩展。
阅读全文

相关推荐

text/x-c
guessing and betting number game The user starts with 100 dollars, and is able to bet and guess until they quit or have no more money. In each turn, they are asked for a bet. If they enter 0, then the program should give a farewell message and quit. The bet must be positive and within their available balance, If they enter incorrectly, the program should set the bet to their balance and tell them this. Once a bet is entered, they must pick a number between 1 and 10 (you do not need to errorcheck or correct this). This guess is then compared to a number the computer randomly generates each time (also between 1 and 10). If the guess is correct, the user wins the amount of their bet. If the guess is incorrect, the user will lose their bet divided by 5 and multiplied by the distance from the correct number - e.g. if the bet is 50, the computer’s number is 5 and the user guesses 7, then the user will lose 20 dollars( 50/5 * (7-5) = 20 ). However, they should not lose more than their balance, so if their balance is 50, the bet is 40, the computer’s number is 1 and the user guesses 10, (40/5 * (10-1) = 72 > 50 )then they should lose 50. After each turn, the program should display that turn's winnings (or loss amount) and the new balance,and then repeat the game until the user either quits or has no money left. Dollar values should be formatted in the standard way with two decimal places and a $ in front. Sample output from the program is below. You should make your program match this exactly (except for your name). An appropriate welcome message with your name in it should be shown at the start of the program. Assignment 1 : Guessing Game Written by yourname Please enter your bet (up to $100.00): $50 Guess a number between 1 and 10: 5 Correct! You win $50.00 Your new balance is $150.00 Please enter your bet (up to $150.00): $200 Your bet is $150.00 Guess a number between 1 and 10: 6 Wrong! The computer chose: 4 You lose $60.00 Your new balance is $90.00 Please enter your bet (up to $90.00): $80 Guess a number between 1 and 10: 1 Wrong! The computer chose: 7 You lose $90.00 Thank you for playing! Press any key to continue . . . Another Sample: CP1200 Guessing Game Written by Lindsay Ward Please enter your bet (up to $100.00): $-20 Your bet is $100.00 Guess a number between 1 and 10: 5 Wrong! The computer chose: 2 You lose $60.00 Your new balance is $40.00 Please enter your bet (up to $40.00): $10.50 Guess a number between 1 and 10: 12 Wrong! The computer chose: 2 You lose $21.00 Your new balance is $19.00 Please enter your bet (up to $19.00): $0 Thank you for playing! Press any key to continue . . . srand( static_cast<int>(time(0))) ; 初始化 computerNumber = 1 + rand( ) % 10 ; 产生随机数 cout << fixed << setprecision(2) ; 控制输出显示2位小数

最新推荐

recommend-type

C++中求组合数的各种方法总结详解

在C++编程中,求组合数是一个常见的数学计算任务,特别是在处理排列组合问题时。组合数,也称为二项式系数,表示从n个不同元素中不重复地选取r个元素的方法数,记为C(n, r)或者"n choose r"。本文将详细介绍三种在...
recommend-type

C++实现图形界面时钟表盘代码

总结来说,这个C++实现的图形界面时钟表盘代码利用了Windows API中的图形绘制函数,包括坐标映射、图形绘制和窗口消息处理。虽然这个例子较为基础,但它可以作为进一步开发更复杂GUI应用程序的起点,比如添加动态...
recommend-type

约瑟夫环问题用C++代码实现

约瑟夫环问题,也称为...总结来说,约瑟夫环问题的C++实现利用了循环和数组,巧妙地模拟了圆圈中人的报数和淘汰过程,有效地解决了问题。虽然题目要求使用递归函数,但实际的解决方案使用了迭代,这在效率上更为高效。
recommend-type

C++基于EasyX图形库实现2048小游戏

在C++中实现2048游戏,我们需要创建一个游戏核心类`Game2048`,这个类将包含游戏地图、分数、步数、使用时间以及最大数字等属性。在给出的代码中,`Game2048CoreClass`就是游戏的核心类,它包含了游戏的运行逻辑。...
recommend-type

画太极图的C++代码实现

总结来说,绘制太极图的C++代码实现涉及MFC的图形绘制函数,如`Pie`和`Ellipse`,以及`CBrush`和`CPen`对象的使用。通过合理设置颜色、线条样式和图形参数,可以创建出美观的太极图案。在实际编程中,需要根据具体...
recommend-type

Angular实现MarcHayek简历展示应用教程

资源摘要信息:"MarcHayek-CV:我的简历的Angular应用" Angular 应用是一个基于Angular框架开发的前端应用程序。Angular是一个由谷歌(Google)维护和开发的开源前端框架,它使用TypeScript作为主要编程语言,并且是单页面应用程序(SPA)的优秀解决方案。该应用不仅展示了Marc Hayek的个人简历,而且还介绍了如何在本地环境中设置和配置该Angular项目。 知识点详细说明: 1. Angular 应用程序设置: - Angular 应用程序通常依赖于Node.js运行环境,因此首先需要全局安装Node.js包管理器npm。 - 在本案例中,通过npm安装了两个开发工具:bower和gulp。bower是一个前端包管理器,用于管理项目依赖,而gulp则是一个自动化构建工具,用于处理如压缩、编译、单元测试等任务。 2. 本地环境安装步骤: - 安装命令`npm install -g bower`和`npm install --global gulp`用来全局安装这两个工具。 - 使用git命令克隆远程仓库到本地服务器。支持使用SSH方式(`***:marc-hayek/MarcHayek-CV.git`)和HTTPS方式(需要替换为具体用户名,如`git clone ***`)。 3. 配置流程: - 在server文件夹中的config.json文件里,需要添加用户的电子邮件和密码,以便该应用能够通过内置的联系功能发送信息给Marc Hayek。 - 如果想要在本地服务器上运行该应用程序,则需要根据不同的环境配置(开发环境或生产环境)修改config.json文件中的“baseURL”选项。具体而言,开发环境下通常设置为“../build”,生产环境下设置为“../bin”。 4. 使用的技术栈: - JavaScript:虽然没有直接提到,但是由于Angular框架主要是用JavaScript来编写的,因此这是必须理解的核心技术之一。 - TypeScript:Angular使用TypeScript作为开发语言,它是JavaScript的一个超集,添加了静态类型检查等功能。 - Node.js和npm:用于运行JavaScript代码以及管理JavaScript项目的依赖。 - Git:版本控制系统,用于代码的版本管理及协作开发。 5. 关于项目结构: - 该应用的项目文件夹结构可能遵循Angular CLI的典型结构,包含了如下目录:app(存放应用组件)、assets(存放静态资源如图片、样式表等)、environments(存放环境配置文件)、server(存放服务器配置文件如上文的config.json)等。 6. 开发和构建流程: - 开发时,可能会使用Angular CLI来快速生成组件、服务等,并利用热重载等特性进行实时开发。 - 构建应用时,通过gulp等构建工具可以进行代码压缩、ES6转译、单元测试等自动化任务,以确保代码的质量和性能优化。 7. 部署: - 项目最终需要部署到服务器上,配置文件中的“baseURL”选项指明了服务器上的资源基础路径。 8. 关于Git仓库: - 压缩包子文件的名称为MarcHayek-CV-master,表明这是一个使用Git版本控制的仓库,且存在一个名为master的分支,这通常是项目的主分支。 以上知识点围绕Angular应用“MarcHayek-CV:我的简历”的创建、配置、开发、构建及部署流程进行了详细说明,涉及了前端开发中常见的工具、技术及工作流。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

深入剖析:内存溢出背后的原因、预防及应急策略(专家版)

![深入剖析:内存溢出背后的原因、预防及应急策略(专家版)](https://d8it4huxumps7.cloudfront.net/uploads/images/65e82a01a4196_dangling_pointer_in_c_2.jpg?d=2000x2000) 参考资源链接:[Net 内存溢出(System.OutOfMemoryException)的常见情况和处理方式总结](https://wenku.csdn.net/doc/6412b784be7fbd1778d4a95f?spm=1055.2635.3001.10343) # 1. 内存溢出的概念及影响 内存溢出,又称
recommend-type

Java中如何对年月日时分秒的日期字符串作如下处理:如何日期分钟介于两个相连的半点之间,就将分钟数调整为前半点

在Java中,你可以使用`java.time`包中的类来处理日期和时间,包括格式化和调整。下面是一个示例,展示了如何根据给定的日期字符串(假设格式为"yyyy-MM-dd HH:mm:ss")进行这样的处理: ```java import java.text.SimpleDateFormat; import java.time.LocalDateTime; import java.time.ZoneId; import java.time.ZonedDateTime; public class Main { public static void main(String[] args
recommend-type

Crossbow Spot最新更新 - 获取Chrome扩展新闻

资源摘要信息:"Crossbow Spot - Latest News Update-crx插件" 该信息是关于一款特定的Google Chrome浏览器扩展程序,名为"Crossbow Spot - Latest News Update"。此插件的目的是帮助用户第一时间获取最新的Crossbow Spot相关信息,它作为一个RSS阅读器,自动聚合并展示Crossbow Spot的最新新闻内容。 从描述中可以提取以下关键知识点: 1. 功能概述: - 扩展程序能让用户领先一步了解Crossbow Spot的最新消息,提供实时更新。 - 它支持自动更新功能,用户不必手动点击即可刷新获取最新资讯。 - 用户界面设计灵活,具有美观的新闻小部件,使得信息的展现既实用又吸引人。 2. 用户体验: - 桌面通知功能,通过Chrome的新通知中心托盘进行实时推送,确保用户不会错过任何重要新闻。 - 提供一个便捷的方式来保持与Crossbow Spot最新动态的同步。 3. 语言支持: - 该插件目前仅支持英语,但开发者已经计划在未来的版本中添加对其他语言的支持。 4. 技术实现: - 此扩展程序是基于RSS Feed实现的,即从Crossbow Spot的RSS源中提取最新新闻。 - 扩展程序利用了Chrome的通知API,以及RSS Feed处理机制来实现新闻的即时推送和展示。 5. 版权与免责声明: - 所有的新闻内容都是通过RSS Feed聚合而来,扩展程序本身不提供原创内容。 - 用户在使用插件时应遵守相关的版权和隐私政策。 6. 安装与使用: - 用户需要从Chrome网上应用店下载.crx格式的插件文件,即Crossbow_Spot_-_Latest_News_Update.crx。 - 安装后,插件会自动运行,并且用户可以对其进行配置以满足个人偏好。 从以上信息可以看出,该扩展程序为那些对Crossbow Spot感兴趣或需要密切跟进其更新的用户提供了一个便捷的解决方案,通过集成RSS源和Chrome通知机制,使得信息获取变得更加高效和及时。这对于需要实时更新信息的用户而言,具有一定的实用价值。同时,插件的未来发展计划中包括了多语言支持,这将使得更多的用户能够使用并从中受益。