文章
3
粉丝
0
获赞
13
访问
390
#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;
}
登录后发布评论
暂无评论,来抢沙发