题解 1402: 简单的字符串

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

筛选

1402: 简单的字符串

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll; int main(){    int ……

简单的字符串用STL高效解决(C++代码)

摘要:STL里面的Map方法可以很高效的解决这个题,因为mapv中只要添加了字符,不会有重复出现并且还能记录重复了几次,所以代码如下: #include #include ……

字符数组遍历解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){      char str[100] = { 0 };//初始化字符数组  ……

简单的字符串(有思路C++)

摘要: #include using namespace std; // 因为每次只用对比后一个字符,所以这样模拟就行,但是 // 要注意最后一个字符怎么输出,其方法是……

简单的字符串

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){       int n=0;    scanf("%d",&n);    g……