题解 2070: [STL训练]Mispelling4

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Mispelling4_python

摘要:解题思路:注意事项:参考代码:n=int(input())list1=[]for i in range(n):    list1.append(input().split())for i in ran……

Mispelling4题解(Java)

摘要:解题思路:             先调用trim()和replace()函数将字符串里面的空格清掉,再用substring()函数将字符串切割成两部分,需要删除的字母不在这两部分中注意事项:参考代码……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void delete(char n[],int x){    int i;    for (i = x - 1; i < strlen……

erase的大作用

摘要:#include<bits/stdc++.h> using namespace std; int main() {     int t,i=0;     cin>>t;     while……