杭电oj2024题,无法ac,我的代码那里不对?求大神指点

#include<iostream>#include<ctype.h>#include<cstdio>#include<string.h>usingnamespacest... #include <iostream>
#include <ctype.h>
#include <cstdio>
#include <string.h>
using namespace std;
char a [10003];
int main()
{
int n,j;
while(cin>>n)
{
getchar();
for (int i=0;i<n;i++)
{
gets(a);
int len=strlen(a);
if (a[0]!='_' && isalpha(a[0])==0)
{
cout<<"no"<<endl;
continue;
}

for (int t=1;t<len;t++)
{
if (a[t]!='_' && isalpha(a[t])==0 && isdigit(a[t])==0)
{
cout<<"no"<<endl;
j=1;
break;
}
}
if (j==1) continue;
cout<<"yes"<<endl;
}
}
return 0;
}
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=2024
展开
 我来答
haiyangfenghuo
2014-10-10 · TA获得超过2439个赞
知道大有可为答主
回答量:2388
采纳率:0%
帮助的人:812万
展开全部
你的j初始化一下就好了,j = -1;
#include <iostream>
#include <ctype.h>
#include <cstdio>
#include <string.h>
using namespace std;
char a [10003];
int main()
{
int n,j = -1;
cin>>n;
getchar();
for (int i=0;i<n;i++)
{
gets(a);
int len=strlen(a);
if (a[0]!='_' && isalpha(a[0])==0)
{
cout<<"no"<<endl;
continue;
}

for (int t=1;t<len;t++)
{
if (a[t]!='_' && isalpha(a[t])==0 && isdigit(a[t])==0)
{
cout<<"no"<<endl;
j=1;
break;
}
}
if (j==1) continue;
cout<<"yes"<<endl;
}
return 0;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
八千汉字
2014-10-10 · TA获得超过189个赞
知道小有建树答主
回答量:312
采纳率:100%
帮助的人:193万
展开全部
c 关键字 单是这一项估计就很麻烦 构建一个常量表吧
追问
这道题不用考虑关键字,但我还是错了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式