B1033 旧键盘打字 (20分)

#include<iostream>
#include<cstdio> 
#include<cstring> 
#include<cctype>//里面有isdigit():数字字符返回true 
using namespace std; 
int maxn=100010;

int main(){
	char str[maxn];
	cin.getline(str,maxn);
	bool HashTable[258];//键盘按键与 ASCII 字符集对照表
	memset(HashTable,true,sizeof(HashTable));//注意初始化为true的情况和false不一样 
	for(int i=0;i<strlen(str);i++){
		HashTable[tolower(str[i])]=false;//把大写全转换为小写 
	}
	cin.getline(str,maxn);
	

	for(int i=0;i<strlen(str);i++){
		//将大写字母分开
		if(HashTable[tolower(str[i])]==false)
		continue;
		if(isupper(str[i])&& HashTable['+']==false) 
		continue;		
		printf("%c",str[i]);
	}

 

	return 0;
}
 
 

用到string的find:(参考柳神) 

#include<iostream>
#include<cstdio> 
#include<cstring> 
#include<cctype>//里面有isdigit():数字字符返回true 
using namespace std; 


int main(){
	string bad,str;
	//cin以空格和回车作为结束符 
	getline(cin,bad);
	getline(cin,str);
	for(int i=0;i<str.length();i++){
		//将大写字母分开
		if(bad.find(toupper(str[i]))!=string::npos)
		continue;
		if(isupper(str[i])&&bad.find('+')!=string::npos) 
		continue;		
		cout<<str[i];
	}

 

	return 0;
}
 
 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值