详细代码,数学问题不大,就是理解问题 摘要:解题思路:这个首先真的细心读题目,题目说每行测试后悔空一行,这说明什么 ——听我到来;这是一个求字符众数的题,首先得遍历每个字符串吧,遍历字符串就得用循环吧遍历字符串得数一下字符串中每个字符出现多少次…… 题解列表 2023年11月25日 0 点赞 0 评论 309 浏览 评分:0.0
2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; cout<…… 题解列表 2023年11月25日 0 点赞 0 评论 291 浏览 评分:0.0
题解 2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; cout<<(c…… 题解列表 2023年11月25日 0 点赞 0 评论 309 浏览 评分:0.0
小白钓鱼(简单题解) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,b=0,i,a; scanf("%d",&a); for(i=1;i<=a;i++){ scanf…… 题解列表 2023年11月25日 0 点赞 0 评论 352 浏览 评分:0.0
奇偶求和!!! 摘要:解题思路:选判断奇数和偶数,再加就行了注意事项:参考代码:#include<stdio.h>int main(){ int n,odd=0,even=0; scanf("%d",&n); …… 题解列表 2023年11月25日 0 点赞 0 评论 198 浏览 评分:0.0
循环队列之数字后移 摘要:解题思路:看成循环队列即可注意事项:参考代码:n=int(input())x=list(input().split())y=list(x)m=int(input())for i in range(0,…… 题解列表 2023年11月25日 0 点赞 0 评论 261 浏览 评分:0.0
双向链表实现大整数的乘法 摘要:参考代码:#include<stdio.h> #include<string.h> #include<stdlib.h> struct lennum{ int num; struct …… 题解列表 2023年11月25日 0 点赞 0 评论 391 浏览 评分:0.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,k; scanf("%d%d",&a,&b); if(a<b) { …… 题解列表 2023年11月25日 0 点赞 0 评论 371 浏览 评分:0.0
2991: 八进制到十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 290 浏览 评分:0.0
2082: 蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){ cin>>s; int…… 题解列表 2023年11月25日 0 点赞 0 评论 379 浏览 评分:0.0