文章

81

粉丝

0

获赞

284

访问

11.5k

头像
字符分类 题解:
P1016 兰州大学/贵州大学机试题
发布于2025年3月15日 04:11
阅读数 101

#include<bits/stdc++.h>
using namespace std;
int main(){
	string input,z,num,fu;
	cin>>input;
	for(char c:input){
	if(c>='A'&&c<='Z'||c>='a'&&c<='z'){
		z.push_back(c);
	}else if(c>='0'&&c<='9'){
		num.push_back(c);
	}else{
		fu.push_back(c);
	}
	}
	cout<<z<<endl;
	cout<<num<<endl;
	cout<<fu<<endl;
	return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发