满分代码如下:(提交时需改成C语言格式) #include<iostream>#include<stdio.h>#include<cstring>using namespace std;intmain(){chara[100000],b[100000];gets(a);gets(b);for(inti=0;i<strlen(a);i++){if(strchr(b,a[i]))continue;elsecout<<a[i];}}...
代码语言:javascript 复制 I love GPLT! It's a fun game! aeiou 输出样例: 代码语言:javascript 复制 I lv GPLT! It's fn gm! 解题思路: 题目简单来说就是一句话:在字符串A中删除字符串B中含有的字符后输出字符串A-B。换个角度来想就是只输出字符串A中字符串B不含有的字符,用一个map来记录字符串B...
L1-011 A-B (20分) 题目描述:本题要求你计算A−B。不过麻烦的是,A和B都是字符串 —— 即从字符串A中把字符串B所包含的字符全删掉,剩下的字符组成的就是字符串A−B。 输入格式: 输入在2行中先后给出字符串A和B。两字符串的长度都不超过104,并且保证每个字符串都是由可见的ASCII码和...
It's fn gm! 代码语言:javascript 复制 #include<iostream>#include<bits/stdc++.h>using namespace std;typedef long long ll;constintMAXN=300005;constintN=26;charA[200005];charB[200005];int t[265];intmain(){scanf("%[^\n]",A);getchar();scanf("%[^\n]",B);int len=strlen(B);memset...