1402: 简单的字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll; int main(){ int …… 题解列表 2022年05月25日 0 点赞 0 评论 121 浏览 评分:0.0
简单的字符串-题解(C语言代码) 摘要: #include #include int main(){ int x,y,z=0,d; scanf("%d",&x); while(z…… 题解列表 2019年08月11日 0 点赞 0 评论 571 浏览 评分:0.0
简单的字符串用STL高效解决(C++代码) 摘要:STL里面的Map方法可以很高效的解决这个题,因为mapv中只要添加了字符,不会有重复出现并且还能记录重复了几次,所以代码如下: #include #include …… 题解列表 2020年03月11日 0 点赞 0 评论 316 浏览 评分:0.0
简单的字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n=0; scanf("%d",&n); g…… 题解列表 2023年12月20日 0 点赞 0 评论 68 浏览 评分:0.0
简单的字符串 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i,j,k,t; char s[10001]; scanf("%…… 题解列表 2018年02月22日 0 点赞 0 评论 1157 浏览 评分:2.7
简单的字符串-题解(C语言代码) 摘要: #include int main() { char a[10000]; int n,i,j; scanf("%d",&n); for(i=0…… 题解列表 2019年07月25日 0 点赞 0 评论 494 浏览 评分:6.0
简单的字符串-题解(Python代码) 摘要:参考代码:n = int(input()) for i in range(n): s = input() d = {} for j in s: & 题解列表 2021年01月24日 0 点赞 0 评论 200 浏览 评分:8.0
简单的字符串-题解(C语言代码)(我的是笨法子) 摘要:解题思路: 这里有一个用于计数的整型变量,用count代替吧,count=1为初始值。针对输入的一个字符串而言,从第二个字符开始鉴别(注意是str[1]不是str[0]或str[2]),将当前字符与…… 题解列表 2019年07月31日 0 点赞 5 评论 873 浏览 评分:9.0
简单的字符串-题解(C语言代码) 摘要:```c #include #include int main() { char s[10000],ch; int i,j,n,count; scanf("%…… 题解列表 2020年02月26日 0 点赞 0 评论 663 浏览 评分:9.2
【C语言】编写题解 1402: 简单的字符串 摘要:参考大神题解,理解后写了注释。参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, k, n, len, cou…… 题解列表 2021年10月26日 0 点赞 0 评论 298 浏览 评分:9.9