回文数字,用好函数,一个函数里可以有两个判断语句 摘要:解题思路:用好函数,一个函数里可以有两个判断语句 注意事项:参考代码:#include<stdio.h>#include<math.h>bool rever(int a,int length,int …… 题解列表 2021年03月19日 0 点赞 1 评论 210 浏览 评分:2.0
python解决明明的随机数 摘要:解题思路:注意虽然题上说“明明要生成随机数”,但是实际上并没有生成随机数,需要理解题意。注意事项:参考代码:n = int(input()) a = eval(input().replace(…… 题解列表 2021年03月21日 0 点赞 0 评论 533 浏览 评分:2.0
只做最好的题解 摘要:#include<iostream> //#include<bits/stdc++.h> #include<cmath> #include<cstring> #include<algorith…… 题解列表 2021年03月23日 0 点赞 0 评论 211 浏览 评分:2.0
1611: 蓝桥杯算法训练VIP-传纸条(Python3)三维DP 摘要:解题思路:类似题目:https://www.dotcpp.com/oj/problem1639.html 题解:https://blog.dotcpp.com/a/77794参考:http://…… 题解列表 2021年03月23日 0 点赞 0 评论 490 浏览 评分:2.0
题解 2061: [STL训练]周瑜的反间计. 蒋干还会用电脑跑程序???为啥没人做?是因为前戏太多了嘛 摘要:参考代码:#include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> int main() {…… 题解列表 2021年03月24日 0 点赞 0 评论 659 浏览 评分:2.0
改进了别人的代码,删除的数字不能链表在最后 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li…… 题解列表 2021年03月24日 0 点赞 0 评论 333 浏览 评分:2.0
就两行代码,来看看吧 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] ar…… 题解列表 2021年04月01日 0 点赞 0 评论 327 浏览 评分:2.0
C语言训练-"水仙花数"问题2 摘要:参考代码:#include<stdio.h>#include<math.h>main(){ int n,a,b,c; for(n=100;n<=999;n++) { …… 题解列表 2021年04月01日 0 点赞 0 评论 251 浏览 评分:2.0
Java优质实现, 摘要:解题思路:注意事项:居然是两次中根遍历,笑掉我的大牙参考代码:import java.util.LinkedList;import java.util.Scanner;class TreeNode{ …… 题解列表 2021年04月01日 0 点赞 0 评论 597 浏览 评分:2.0
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int LeapYear(int year) //判断是否为闰年,闰年2月有29天,平年28天 { if (ye…… 题解列表 2021年04月02日 0 点赞 0 评论 331 浏览 评分:2.0