加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

HDU 2024 C语言合法标识符

发布时间:2020-12-15 04:48:14 所属栏目:百科 来源:网络整理
导读:这道题是帮大家回忆合法标识符的限制条件吧。。。 读入字符串两个地方需要注意,第一个是输入完数量之后需要一个getchar来读取回车符 第二个是读入一整行字符需要用gets #include #include #include using namespace std; void main() { int n; scanf("%d",n

这道题是帮大家回忆合法标识符的限制条件吧。。。

读入字符串两个地方需要注意,第一个是输入完数量之后需要一个getchar来读取回车符

第二个是读入一整行字符需要用gets

#include

#include

#include

using namespace std;

void main()

{

int n;

scanf("%d",&n);

char str[55];

int len;

getchar();//读取回车

while(n--)

{

int i;

gets(str);

len = strlen(str);

if( !(str[0] >='a'&&str[0]<='z') && !(str[0]>='A' && str[0]<='Z') && !(str[0] == '_') )

{

printf("non");

continue;

}

for ( i=1;i

{

if( !(str[i] >='a'&&str[i]<='z') && !(str[i]>='A' && str[i]<='Z') && !(str[i] == '_')

&& !(str[i] >='0'&&str[i]<='9'))

{

printf("non");

break;

}

}

if( i == len)

printf("yesn");

}

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读