题解 1402: 简单的字符串

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

筛选

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

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

简单字符串的不简单解法

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

1402: 简单的字符串

摘要:解题思路:开辟一个长度为26的数组,记录字母出现的情况参考代码:#include <stdio.h> #include <string.h> int main () { int i; ……

简单的字符串

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[10001],k; int i,j,n,l; scanf("%……

简单字符串

摘要:解题思路:先将每个字符串遍历,将字符串作为函数参数,在函数中遍历每个字符,判断该字符与后一个字符是否相等,是则统计个数。注意事项:每次遍历都要将count置为1(当与后一个字符不等时)参考代码:def……

简单的字符串

摘要:解题思路:注意事项:参考代码:import java.util.LinkedList; import java.util.Scanner; public class _1402 {     ……

简单的字符串-题解(C++代码)

摘要:解题思路:循环遍历, 很通俗易懂的解法!注意事项:无参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll;……