C语言编程,猜字游戏,看看我的程序哪里有错?谢谢!

#include<stdio.h>intget_word(charw[]);intfind_lett(charw[],charG,intn);intmain(void){... #include<stdio.h>
int get_word(char w[]);
int find_lett(char w[],char G,int n);
int main(void)
{
int index;
int size;
char g;
char word[4];
char guess[4]="****";
printf("The Game of Hangman – all caps, 4 different characters\n");
printf("Input a word to be guessed: ");
size=get_word(word);
printf("%s",word);
while(word!=guess)
{
printf("Guess: %s",guess);
printf("Input letter> ");
scanf("%c",g);
index=find_lett(word,g,size);
guess[index]=word[index];
}
return(0);
}
int get_word(char w[])
{
int i=0;
scanf("%s",w);
while(w[i]!='\0')
{
i++;
}
return(i);
}
int find_lett(char w[],char G,int n)
{
int i;
int Index;
for(i=0;i<n;i++)
{
if(w[i]=G)
Index=i;
}
return(Index);
}
展开
 我来答
zhjiemm
推荐于2016-08-28 · TA获得超过2643个赞
知道大有可为答主
回答量:1834
采纳率:75%
帮助的人:720万
展开全部
char word[4] ;你放的是一个字符串,是以'\0'结束的。要定义数组为5个字符,这样才能get_word()取得到word的长度。
另外scanf的用法也不对。
函数中的if比较少写了一个=符号

#include<stdio.h>
#include<string.h>

int get_word(char w[]);
int find_lett(char w[],char G,int n);
int main(void)
{
int index;
int size;
char g;
char word[5]; /* **** */
char guess[5]="****";
printf("The Game of Hangman – all caps, 4 different characters\n");
printf("Input a word to be guessed: ");
size=get_word(word);
printf("%s",word);
while(strcmp(word,guess))
{
printf("Guess: %s",guess);
printf("Input letter> ");
fflush(stdin);
scanf("%c",&g); /* **** */
index=find_lett(word,g,size);
if(index!=-1)
guess[index]=word[index];
}
return(0);
}
int get_word(char w[])
{
int i=0;
scanf("%s",w);
while(w[i]!='\0')
{
i++;
}
return(i);
}
int find_lett(char w[],char G,int n)
{
int i;
int Index=-1;
for(i=0;i<n;i++)/* **** */
{
if(w[i]==G)
{
Index=i;
break;
}
}
return(Index);
}

//循环,用goto来实现,修改后代码:
#include<stdio.h>
#include<string.h>

int get_word(char w[]);
int find_lett(char w[],char G,int n);
int main(void)
{
int index;
int size;
char g;
char word[5]; /* **** */
char guess[5];
loop:
printf("The Game of Hangman – all caps, 4 different characters\n");
printf("Input a word to be guessed: ");
size=get_word(word);
printf("%s\n",word);
strcpy(guess,"****");
while(strcmp(word,guess))
{
printf("Guess: %s",guess);
printf("Input letter> ");
fflush(stdin);
scanf("%c",&g); /* **** */
index=find_lett(word,g,size);
if(index!=-1)
guess[index]=word[index];
}
while(1)
{
printf("\nselect option:Y(continue); N(exit)> ");
fflush(stdin);
g = getchar();

if(g=='y'||g=='Y')
goto loop;
else if(g=='n'||g=='N')
break;

}
return(0);
}
int get_word(char w[])
{
int i=0;
scanf("%s",w);
while(w[i]!='\0')
{
i++;
}
return(i);
}
int find_lett(char w[],char G,int n)
{
int i;
int Index=-1;
for(i=0;i<n;i++)/* **** */
{
if(w[i]==G)
{
Index=i;
break;
}
}
return(Index);
}
1239388231
2012-04-17 · 超过44用户采纳过TA的回答
知道小有建树答主
回答量:136
采纳率:0%
帮助的人:104万
展开全部
#include<stdio.h>
#include<string.h>
int find_lett(char w[],char G,int n);
int main(void)
{
int index;
int size;
char g;
char word[5];
char guess[5]={'*','*','*','*'};
printf("The Game of Hangman – all caps, 4 different characters\n");
printf("Input a word to be guessed: ");
scanf("%s",word);
size=strlen(word);
while(strcmp(word,guess))
{
printf("Guess: %s\n",guess);
printf("Input letter> ");
scanf("%c",&g);
index=find_lett(word,g,size);
guess[index]=word[index];
}
return(0);
}
int find_lett(char w[],char G,int n)
{
int i;
int Index;
for(i=0;i<n;i++)
{
if(w[i]=G)
Index=i;
}
return(Index);
}
能用库函数的已经改为库函数了,虽然不知道你要实现什么输出,但我感觉这个程序的输出不对。你能否吧函数要实现的功能具体的说明一下。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lcywqs
2012-04-18
知道答主
回答量:3
采纳率:0%
帮助的人:4853
展开全部
在find_lett函数中,if(w[i]=G) 这个判断条件是肯定又错误的。
应改成if(w[i]==G)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式