主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
拉萨小队长
2024年4月24日 22:25
删除字符串 题解:老老实实,做子串匹配!
P1026
回复 0
|
赞 0
|
浏览 412
#include<bits/stdc++.h> using namespace std; int main(){ char s[100]; gets(s); int len=strlen(s); for(int i=0;i<len;i++){ if(s[i]=='g'&&s[i+1]=='z'&&s[i+2]=='u...
我与代码的故事
2024年4月20日 16:22
删除字符串 题解:
P1026
回复 0
|
赞 1
|
浏览 690
#include<bits/stdc++.h> using namespace std; int main() { string str; getline(cin, str); for(int i = 0; i < str.size(); i ++) { if(str[i] == 'g' && str[i + 1] == 'z' && str[i + 2] =='u') { i += 2; continue; } cout << str[i] ...
20082123
2024年3月29日 10:45
删除字符串 题解:
P1026
回复 0
|
赞 0
|
浏览 454
#include<bits/stdc++.h> using namespace std; int main(){ string s; int k; cin>>s; while(1){ k=s.find("gzu"); if(k!=...
orderrr
2024年3月18日 18:12
删除字符串 题解:c 语言解决
P1026
回复 0
|
赞 1
|
浏览 648
#include <stdio.h> #include <string.h> int main() { char s[101]; scanf("%s", s); int i = 0; while (s[i] != '\0') { if (s[i] == 'g' && s[i + 1] == 'z' && s[i + 2] == 'u' && i <= strlen(s) - 2) { ...
小酒
2024年3月15日 15:31
删除字符串 题解:
P1026
回复 0
|
赞 0
|
浏览 587
1026解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[105]={0}; char b[105]={0}; gets(a); int l=strlen(a); int j=0; for(int i=0;i<l;i++) { if(a[i]=='g'&&a[i+1]=='z'&&a[i+2]=='u') { //b[j++]=a[i+3]; i=i+2; } ...
FIVEszc
2024年3月13日 20:58
删除字符串 题解:C++
P1026
回复 0
|
赞 0
|
浏览 591
#include <bits/stdc++.h> using namespace std; int main() { char s[100]; fgets(s,100,stdin); string str=s; while(str.find("gzu")!=-1){ int pos=str.find("gzu"); str.erase(pos,3); } printf("%s",str.c_str()); return 0; }
Cookie‘s AE86
2024年3月13日 10:48
删除字符串 题解:s.find();s.erase()实现
P1026
回复 0
|
赞 0
|
浏览 394
#include<bits/stdc++.h> using namespace std; int main() { string s; cin >> s; int mark = s.find("gzu"); while(mark != -1){ s.erase(mark, 3); mark = s.find("gzu"); } cout << s; return 0; }
xhpn
2024年3月5日 21:57
删除字符串 题解:大写照样删
P1026
回复 0
|
赞 0
|
浏览 581
#include<stdio.h> #include<string.h> int main(){ char s[101]; int i; gets(s); int len=strlen(s); for(i=0;i<len;i++){ if((s[i]=='g'||s[i]=='G'...
lingdongyang
2024年2月29日 17:31
删除字符串 题解:C
P1026
回复 0
|
赞 1
|
浏览 720
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char s[105]; char s_lower[105];//全是小写的 int f[105];//标记需要删除的字符串 gets(s); int len = strlen(s); char y[3] = {'g','z','u'}; for (int i = 0; i < len; i++) {//将原本的可能出现的大写变为小写 if (s[i] >...
DestinyCares+++
2024年2月19日 16:30
删除字符串 题解: replace与find函数
P1026
回复 0
|
赞 0
|
浏览 640
#include<iostream> #include<string> using namespace std; int main() { string str; getline(cin, str); string s = "gzu"; int m = s.length(); while (str.find(s)!=string::npo...
1
2
3
题目
删除字符串
题解数量
21
发布题解
热门题解
1
题解:删除字符串
2
P1026 删除字符串
3
删除字符串 题解:C
4
字符串删除
5
c
6
删除字符串 题解:c 语言解决
7
删除字符串 题解:
8
删除字符串
9
删除字符串 题解:
10
删除字符串 题解:老老实实,做子串匹配!