文章
11
粉丝
318
获赞
6
访问
106.4k
#include <bits/stdc++.h>
using namespace std;
string s,word,num,other;
int main()
{
getline(cin,s);
for(int i=0;i<s.size();i++)
{
if(s[i]>='0'&&s[i]<='9') num+=s[i];
else if(s[i]>='a'&&s[i]<='z'||s[i]>='A'&&s[i]<='Z') word+=s[i];
else other+=s[i];
}
cout<<word<<endl<<num<<endl<<other<<endl;
return 0;
}
登录后发布评论
暂无评论,来抢沙发