- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为我的 C 编程入门类(class)做一个项目,我已经能够完成其中的大部分内容,但只是在寻找一些关于如何完成最后几个步骤的建议,因为我遇到了困难。1) 这是一个井字游戏程序,专为两个用户使用他们的名字手动玩而设计。2)此代码必须模块化(至少对于游戏板和检查获胜者功能)3)一旦宣布获胜者,应提示用户是否想再次玩4) 如果再次玩,必须从新的游戏板开始,并记录所玩的游戏并计算每个玩家获胜的次数。
到目前为止,我的代码可以接收并使用玩家姓名、玩游戏并检查获胜者。我所坚持的部分是弄清楚如何提示再次玩游戏,并在计算和显示玩过的游戏以及每个玩家获胜的次数的同时执行此操作。
任何帮助和建议都会很棒!谢谢!
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
// Prototypes
int check_winner(char game_score[9], char player1[10], char player2[10]);
char game_board(char game_score[9]);
// Begin main
int main(void)
{
// Initialize ad declare variables
char player1[10], player2[10];
char game_score[9] = {'1','2','3','4','5','6','7','8','9'};
int go, game_count, player1_wins, player2_wins;
int i, turn, play_again;
printf("\nWelcome to Tic-Tac-Toe!!\n\nWhat is Player 1's name? You will be X's: ");
fgets(player1, 10, stdin);
printf("\nWhat is Player 2's name? You will be O's: ");
fgets(player2, 10, stdin);
// Begin game that last 9 turns
for (turn = 1 ; turn <= 9 ; turn++)
{
// Display the initial game board
game_board(game_score);
// Prompt the first player to select where to go
printf("\n\n%s\nit is your turn! Please select the number where\n", player1);
printf("you want to place your X: ");
scanf("%d", &go);
// Place X in the selected spot on the board
game_score[go-1] = 'X';
// Check for a winner
check_winner(game_score, player1, player2);
// Display the game board updated with Player 1's move
game_board(game_score);
// Prompt Player 2 to select where to go
printf("\n\n%s\nit is your turn! Please select the number where\n", player2);
printf("you want to place your O: ");
scanf("%d", &go);
// Place O in selected spot on the board
game_score[go-1] = 'O';
// Check for a winner
check_winner(game_score, player1, player2);
}
return 0;
}
// Check winner function
int check_winner(char game_score[9], char player1[10], char player2[10])
{
int i;
if (game_score[0] == 'X' && game_score[3] == 'X' && game_score[6] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[1] == 'X' && game_score[4] == 'X' && game_score[7] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[2] == 'X' && game_score[5] == 'X' && game_score[8] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[0] == 'X' && game_score[1] == 'X' && game_score[2] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[3] == 'X' && game_score[4] == 'X' && game_score[5] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[6] == 'X' && game_score[7] == 'X' && game_score[8] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[0] == 'X' && game_score[4] == 'X' && game_score[8] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[2] == 'X' && game_score[4] == 'X' && game_score[6] == 'X')
printf("\n\n%syou are the winner! Would you like to play again?: ", player1);
else if (game_score[0] == 'O' && game_score[3] == 'O' && game_score[6] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[1] == 'O' && game_score[4] == 'O' && game_score[7] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[2] == 'O' && game_score[5] == 'O' && game_score[8] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[0] == 'O' && game_score[1] == 'O' && game_score[2] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[3] == 'O' && game_score[4] == 'O' && game_score[5] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[6] == 'O' && game_score[7] == 'O' && game_score[8] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[0] == 'O' && game_score[4] == 'O' && game_score[8] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
else if (game_score[2] == 'O' && game_score[4] == 'O' && game_score[6] == 'O')
printf("\n\n%syou are the winner! Would you like to play again?: ", player2);
}
// Game board display function
char game_board(char game_score[9])
{
printf("\n\n %c | %c | %c \n---+---+---\n %c | %c | %c \n---+---+---\n %c | %c | %c \n",
game_score[0], game_score[1], game_score[2], game_score[3], game_score[4],
game_score[5], game_score[6], game_score[7], game_score[8]);
return 0;
}
最佳答案
将 main
函数的内容放入另一个函数中,我将其命名为 play_game
。在新的 main
中,循环运行 play_game
。
关于c - 用 C 语言编写井字游戏并指定规范,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29482391/
我只想从客户端向服务器发送数组 adc_array=[w, x, y, z]。下面是客户端代码,而我的服务器是在只接受 json 的 python 中。编译代码时我没有收到任何错误,但收到 2 条警告
我是 lua 和 Node js 的新手,我正在尝试将我正在开发的移动应用程序连接到服务器。问题是它连接到服务器,但我尝试传递的数据丢失或无法到达服务器。对我正在做的事情有什么问题有什么想法吗? th
我在这个页面上工作 http://www.haskell.org/haskellwiki/99_questions/Solutions/4 我理解每个函数的含义,看到一个函数可以像这样以多种方式定义,
我目前正在尝试将数据写入 excel 以生成报告。我可以将数据写入 csv 文件,但它不会按照我想要的顺序出现在 excel 中。我需要数据在每列的最佳和最差适应性下打印,而不是全部打印在平均值下。这
所以,我正在做一个项目,现在我有一个问题,所以我想得到你的帮助:) 首先,我已经知道如何编写和读取 .txt 文件,但我想要的不仅仅是 x.hasNext()。 我想知道如何像 .ini 那样编写、读
我正在尝试编写一个函数,该函数将返回作为输入给出的任何数字的阶乘。现在,我的代码绝对是一团糟。请帮忙。 function factorialize(num) { for (var i=num, i
这个问题已经有答案了: Check variable equality against a list of values (16 个回答) 已关闭 4 年前。 有没有一种简洁或更好的方法来编写这个条件
我对 VR 完全陌生,正在 AFrame 中为一个类(class)项目开发 VR 太空射击游戏,并且想知道 AFrame 中是否有 TDD 的任何文档/标准。有人能指出我正确的方向吗? 最佳答案 几乎
我正在尝试创建一个 for 循环,它将重现以下功能代码块,但以一种更具吸引力的方式。这是与 Soundcould 小部件 API 实现一起使用的 here on stackoverflow $(doc
我有一个非常令人困惑的问题。我正在尝试更改属性文件中的属性,但它只是没有更改... 这是代码: package config; import java.io.FileNotFoundException
我对 VR 完全陌生,正在 AFrame 中为一个类(class)项目开发 VR 太空射击游戏,并且想知道 AFrame 中是否有 TDD 的任何文档/标准。有人能指出我正确的方向吗? 最佳答案 几乎
我正在开发一个用户模式(Ring3)代码级调试器。它还应支持.NET可执行文件的本机(x86)调试。基本上,我需要执行以下操作: 1).NET在隐身模式下加载某些模块,而没有LOAD_DLL_DEBU
我有一个列表,我知道有些项目是不必要打印的,我正在尝试通过 if 语句来做到这一点...但是它变得非常复杂,所以有没有什么方法可以在 if 语句中包含多个索引而无需打印重写整个声明。 看起来像这样的东
我很好奇以不同方式编写 if 语句是否会影响程序的速度和效率。所以,例如写一个这样的: bool isActive = true; bool isResponding = false; if (isA
我在搜索网站的源代码时找到了一种以另一种方式(我认为)编写 if 语句的方法。 代替: if(a)b; 或: a?b:''; 我读了: !a||b; 第三种方式和前两种方式一样吗?如果是,为什么我们要
我的数据采用以下格式(HashMap的列表) {TeamName=India, Name=Sachin, Score=170} {TeamName=India, Name=Sehwag, Score=
我目前正在完成 More JOIN operations sqlzoo 的教程,遇到了下面的代码作为#12 的答案: SELECT yr,COUNT(title) FROM movie JOIN ca
我正试图找到一种更好的方法来编写这段代码: def down_up(array, player) 7.downto(3).each do |row| 8.times do |col
出于某种原因,我的缓冲区中充满了乱码,我不确定为什么。我什至用十六进制编辑器检查了我的文件,以验证我的字符是否以 2 字节的 unicode 格式保存。我不确定出了什么问题。 [打开文件] fseek
阅读编码恐怖片时,我刚刚又遇到了 FizzBuzz。 原帖在这里:Coding Horror: Why Can't Programmers.. Program? 对于那些不知道的人:FizzBu
我是一名优秀的程序员,十分优秀!