题解列表
回文数字,用好函数,一个函数里可以有两个判断语句
摘要:解题思路:用好函数,一个函数里可以有两个判断语句 注意事项:参考代码:#include<stdio.h>#include<math.h>bool rever(int a,int length,int ……
python解决明明的随机数
摘要:解题思路:注意虽然题上说“明明要生成随机数”,但是实际上并没有生成随机数,需要理解题意。注意事项:参考代码:n = int(input())
a = eval(input().replace(……
1611: 蓝桥杯算法训练VIP-传纸条(Python3)三维DP
摘要:解题思路:类似题目:https://www.dotcpp.com/oj/problem1639.html 题解:https://blog.dotcpp.com/a/77794参考:http://……
题解 2061: [STL训练]周瑜的反间计. 蒋干还会用电脑跑程序???为啥没人做?是因为前戏太多了嘛
摘要:参考代码:#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
int main() {……
改进了别人的代码,删除的数字不能链表在最后
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li……
就两行代码,来看看吧
```javaimportjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannersc=newScanner(System.in);System.out.println(sc.nextLine().repl
C语言训练-"水仙花数"问题2
摘要:参考代码:#include<stdio.h>#include<math.h>main(){ int n,a,b,c; for(n=100;n<=999;n++) { ……