题解列表

筛选

1121题解python for循环

摘要:解题思路:不停地嵌套就行了注意事项:参考代码:for i in range(10000):    if i%8==1:        if (i//8)%8==1:            if ((i……

单词分析(C代码)

摘要: #include #include char str[1010]; //建立count数组统计26个字母出现个数 int count[26]; ……

一种容易理解的方法

摘要:解题思路:注意事项:参考代码:注意逻辑#include<stdio.h>int main(){    int a,b,c;    scanf("%d""%d""%d",&a,&b,&c);    if……

动态规划!!!

摘要:```cpp // f[i][j] = f[i - 1][j] + f[i][j - i] #include using namespace std; const int N = 1……

饮料换购python

摘要:解题思路:蓝桥杯2015年第六届真题-饮料换购 - C语言网 (dotcpp.com)注意事项:参考代码:n = int(input())ans = 0while n>2:    mod = n % ……