杭电2024题我的程序为何总是Wrong Answer?

#include<stdio.h>#include<string.h>intmain(){intn,i,j,m,a[100];charstr[50];char*keywo... #include <stdio.h>
#include <string.h>
int main()
{
int n,i,j,m,a[100];
char str[50];
char *keyword[]={"auto", "break", "case", "char", "const", "continue", "default",
"do", "double", "else", "enum", "extern", "float", "for", "goto",
"if", "int", "long", "register", "return", "short", "signed",
"sizeof", "static", "struct", "switch", "typedef", "union", "unsigned",
"void", "volatile", "while"};
while(scanf("%d",&n)!=EOF&&n<=100)
{
getchar();
for(i=0;i<n;i++)
{
gets(str);
if((*(str+0)>='a'&&*(str+0)<='z')||(*(str+0)>='A'&&*(str+0)<='Z')||*(str+0)=='_')
{
m=0;
for(j=0;*(str+j)!='\0';j++)
{
if(*(str+j)==' ')
{
a[i]=0;m=1;
break;
}
}
if(m==0) a[i]=1;
}
else a[i]=0;
for(j=0;j<32;j++)
{
if(strcmp(keyword[j],str)==0)
a[i]=0;
}
}
for(i=0;i<n;i++)
{
if(a[i]==0) printf("no\n");
if(a[i]==1) printf("yes\n");
}
}
return 0;
}
帮忙请用C语言解释一下。
展开
 我来答
wstc_china
2010-02-10 · 超过22用户采纳过TA的回答
知道答主
回答量:28
采纳率:0%
帮助的人:0
展开全部
#include <iostream>
using namespace std;

bool ischar(char ch)
{
return ch>='数弯谈a'&&ch<薯碰='z' || ch>='A'&&ch<='Z';
}

bool isnum(char ch)
{
return ch>='0'&&ch<='9';
}
bool judge(char *a)
{
if(a[0]!='_'&&!ischar(a[0])) return false;
for(int i=1; a[i]; ++i)
if(a[i]!='_'&&!ischar(a[i])&&!isnum(a[i])) return false;
return true;
}
int main()
{
char a[100];
int text, i, j;
cin>>text;
getchar();
for(i=1; i<=text; ++i)
{
cin.getline(a, 100);
if(judge(a)) cout<闹雹<"yes\n";
else cout<<"no\n";
}
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式