题解列表

筛选

判断回文数

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

日期换算。。

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    cin>>a>>b;    switch……

计算奇数个数

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

与2无关的数

摘要:解题思路:注意事项:n的取值范围为1000以内参考代码:#include<iostream>using namespace std;int main(){    int n,sum=0;    cin……

搜索dfs+暴力

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int len;string ans = "";int jaa(int x, in……

不难不难用好字符串

摘要:解题思路:注意事项:参考代码:s=input()##print()if s[-2:]==&#39;er&#39;:    print(s[:-2])elif s[-2:]==&#39;ly&#39;:……

删除单词后缀

摘要:解题思路:注意事项:参考代码:public class Main {    public static void main(String[] args) {        Scanner scanne……

模拟分类(标题不能太短)

摘要:# 模拟分类 ## 解题思路 举个例子: 假设要找区间[1, 123456789]中所有的好数之和: 1. 假设`2022`出现在最后四位,即我们要求类似于`xxxxx2022`结构的数,思考……

超级玛丽游戏

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……