文章

3

粉丝

0

获赞

13

访问

390

头像
字符分类 题解(C):
P1016 兰州大学/贵州大学机试题
发布于2025年3月22日 17:50
阅读数 79

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAXSIZE 100

int main(){
	char str[MAXSIZE],ch[MAXSIZE],num[MAXSIZE],other[MAXSIZE];
	gets(str);
	int len=strlen(str);
	int i,c=0,n=0,o=0;
	for(i=0; i<len; i++){
		if((str[i]<='Z'&&str[i]>='A') || (str[i]<='z'&&str[i]>='a'))
			ch[c++]=str[i];
		else if(str[i]<='9'&&str[i]>='0')
			num[n++]=str[i];
		else 
			other[o++]=str[i];
	}
	ch[c]='\0';
	num[n]='\0';
	other[o]='\0';

	printf("%s\n",ch);
	printf("%s\n",num);
	printf("%s",other);

	return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发