就是数组里面嵌套数组 摘要:#### 统计字符 ##### 总体思路:在用数组嵌套循环统计个字符的个数上,假定一个字符重复的最大值与之比较赋值就行。 1. 首先,我们用while循环实现多组输入。2.然后循环二十六个字符,输…… 题解列表 2023年05月10日 0 点赞 0 评论 468 浏览 评分:0.0
超级玛丽游戏 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2023年05月10日 0 点赞 0 评论 774 浏览 评分:9.9
模拟分类(标题不能太短) 摘要:# 模拟分类 ## 解题思路 举个例子: 假设要找区间[1, 123456789]中所有的好数之和: 1. 假设`2022`出现在最后四位,即我们要求类似于`xxxxx2022`结构的数,思考…… 题解列表 2023年05月10日 0 点赞 0 评论 918 浏览 评分:7.6
删除单词后缀 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年05月10日 0 点赞 0 评论 447 浏览 评分:0.0
不难不难用好字符串 摘要:解题思路:注意事项:参考代码:s=input()##print()if s[-2:]=='er': print(s[:-2])elif s[-2:]=='ly':…… 题解列表 2023年05月11日 0 点赞 0 评论 558 浏览 评分:9.0
搜索dfs+暴力 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int len;string ans = "";int jaa(int x, in…… 题解列表 2023年05月11日 0 点赞 0 评论 491 浏览 评分:0.0
与2无关的数 摘要:解题思路:注意事项:n的取值范围为1000以内参考代码:#include<iostream>using namespace std;int main(){ int n,sum=0; cin…… 题解列表 2023年05月11日 0 点赞 0 评论 395 浏览 评分:0.0
1262: 邮局选址问题(模拟退火) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct poit { int x; int y; }p[1…… 题解列表 2023年05月11日 0 点赞 0 评论 576 浏览 评分:0.0
计算奇数个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; int t,cnt=0; …… 题解列表 2023年05月11日 0 点赞 0 评论 415 浏览 评分:0.0
日期换算。。 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; switch…… 题解列表 2023年05月11日 0 点赞 0 评论 330 浏览 评分:0.0