题解 2911: 连续出现的字符

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

筛选

连续出现的字符

摘要:解题思路:利用排序法的思路,进行遍历比较注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int k;char str[1000]; s……

c语言代码解决问题

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

2911-连续出现的字符

摘要:解题思路:注意事项:注意题目说的是连续出现的次数,并不是整体出现的次数。参考代码:int main(){ char s[1001]; int k; int len; int i,j; ……

连续出现的字符

摘要:参考代码: ```c #include #include int main() { int k; scanf("%d",&k); char a[1000]; scanf("%……