- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
现在我的游戏正确计数了我正确的字符数,但是如果不匹配字符的大约等于字符串的长度,则不会计数。我一直在尝试修改这段代码一段时间,但它仍然无法修复。这是我的代码:
/*includes and defines*/
#include <stdio.h>
#include <string.h>
#define SIZE 50
/*prototype definitions*/
int compareString(char *, char *);
int main(void){
char word[SIZE];
char input[SIZE];
char guess[SIZE];
int count = 0;
int wrong = 0;
int incorrect = 0;
int right = 0;
int len = 0;
printf("Please enter the word you would like to have to guess.\nThen hand your computer over to the person you would like to have play:");
fgets(word, SIZE, stdin);
len = strlen(word);
printf("Please guess one letter for the %d letter word!\n", len - 1);
do{
fgets(input, SIZE, stdin);
for(count = 0; count < len - 1; count++){
if(input[0] == word[count]){
printf("that letter is in the %d spot\n", count + 1);
++right;
}
/*I know the problem lies here but i'm not sure how to fix it I've tried not using len-1 and just using len, I've tried not resetting the amount wrong. Everything!*/
else if (input[0] != word[count]) {
++wrong;
if(wrong == len - 1){
++incorrect;
}
wrong = 0;
}
}
}while(incorrect < 6 && right < len - 1);
return 0;
}
我知道问题就出在这里,播放器的代码设置错误。但是我不知道如何解决它。我尝试过不使用 len-1 而只使用 len,我尝试过不重置错误的金额。
else if (input[0] != word[count]) {
++wrong;
if(wrong == len - 1){
++incorrect;
}
wrong = 0;
}
最佳答案
问题在于您尝试增加不正确
的方式。只需使用 wrong
作为 bool 值,您将用它来决定是否需要增加in Correct
解决方案如下:
#include <stdio.h>
#include <string.h>
#define SIZE 50
/*prototype definitions*/
int compareString(char *, char *);
int main(void){
char word[SIZE];
char input[SIZE];
char guess[SIZE];
int count = 0;
int wrong = 1;
int incorrect = 0;
int right = 0;
int len = 0;
printf("Please enter the word you would like to have to guess.\nThen hand your computer over to the person you would like to have play:");
fgets(word, SIZE, stdin);
len = strlen(word);
printf("Please guess one letter for the %d letter word!\n", len - 1);
do{
fgets(input, SIZE, stdin);
wrong = 1;
for(count = 0; count < len - 1; count++){
if(input[0] == word[count]){
printf("that letter is in the %d spot\n", count + 1);
wrong = 0;
++right;
}
/*I know the problem lies here but i'm not sure how to fix it I've tried not using len-1 and just using len, I've tried not resetting the amount wrong. Everything!*/
}
if(wrong) {
incorrect++;
}
}while(incorrect < 6 && right < len - 1);
return 0;
}
关于c - Hangman - 如何正确计算玩家的错误猜测次数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26770296/
我的问题在于处理大型 CSV 文件中的数据。 我正在寻找基于在该列中找到的值来确定(即猜测)该列的数据类型的最有效方法。我可能正在处理非常困惑的数据。因此,该算法应该具有一定的容错性。 这是一个例子:
我正在开发一个基于 map 的网络应用程序,我想为用户提供“使用当前位置”的功能 我可以轻松检查地理位置 api 的可用性,如下所示: if (navigator && navigator.geolo
我有一大组日期时间字符串,可以放心地假设它们的格式都相同。例如,我可能有一组日期“7/1/13 0:45”、“5/2/13 6:21”、“7/15/13 1:24”、“7/9/13 12” :41",
我正在尝试对是否可以接收 C2DM 消息进行最佳猜测。 我创建了一个应用程序,它依赖于在物理上无法访问时将信息推送到手机。我知道 C2DM 不能保证传递,但我至少想知道何时可以传递消息;如果不是,我们
我正在编写一个系统,以便用户可以编辑他发布的内容。简化它是一个存储在数据库中的文本区域/输入字段和一个检索它的页面。问题是,我认为编码不正确,因为字符串存储在数据库中,如“É”或其他东西(phpmya
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
只是好奇,但匹配 Guid 的概率是多少? 从 SQL 服务器说一个 Guid:5AC7E650-CFC3-4534-803C-E7E5BBE29B3D 它是阶乘吗?:(36 * 32)! = (11
这个问题已经有答案了: Guessing algorithm does not seem to work, guessing number by Python (3 个回答) 已关闭 5 年前。 程序
我正在创建一个非常简单的计算器,但我需要它在每次击键时进行更新。我似乎找不到该特定类别中的任何内容。有人能指出我正确的方向吗? 我正在寻找类似 A*1.325 + B*3.76 的内容,其中 B 是下
环顾四周this似乎是最接近我的问题的答案。然而它会导致其他问题...... 这是我的情况: $element.insertBefore($container); 此行有一个警告,指出 insertB
当我收到此页面时 http://booking.airasia.com/css/AKBase/Cultures/en-GB/far-min.css与 Node 的 http , toString方法给
我在代码中发现了这一点,但不知道哪个实例接收到。 var guess = require ('myModule1') ('myMmodule2') 最佳答案 看来 myModule1 导出了一个函数,
WARNING: No name was provided for external module 'moment' in output.globals – guessing 'momentImpor
我是一名优秀的程序员,十分优秀!