题解列表

筛选

题解 1026: [编程入门]数字逆序输出(C)

摘要:解题思路:就是个输入输出的考察,没啥好说的,上代码注意不要像我一样,自以为是给数据从大到小排序,输出就好了参考代码:#include<stdio.h> int main(void){ int……

稍微变化的01背包

摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 2010#define maxm 10010int ……

这种题还需要看题解吗?

摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001):     if i%2==0 and i%3==0 and i%7==0:         print(i)……

不会简单的写法

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo……