python党不容易,算法没问题,答案却是错误 摘要:解题思路:注意事项:参考代码:for i in range(1,334): for j in range(1,500): t=(i*i+j*j)**(1/2) if …… 题解列表 2020年11月18日 0 点赞 0 评论 682 浏览 评分:9.9
蛇行矩阵-题解(C语言代码) 摘要:解题思路:找行和列的规律: 行:每行数之间形成递增数列:2 3 4 5-------   题解列表 2020年11月18日 0 点赞 0 评论 486 浏览 评分:9.9
蓝桥杯2013年第四届真题-打印十字图-题解(C语言代码)从中心开始做!!! 摘要:解题思路:从中心往四周扩散注意事项:要有信心,我蹦了几次;狗头狗头参考代码:#include<stdio.h>int main(){ char str[125][125]; int no = 0; i…… 题解列表 2020年11月19日 0 点赞 0 评论 1122 浏览 评分:9.9
1671:小九九-题解(Java代码) 摘要:```java public class Main { public static void main(String[] args) { for (int i = 1; i …… 题解列表 2020年11月19日 0 点赞 1 评论 933 浏览 评分:9.9
[编程入门]有规律的数列求和-题解(C语言代码) 摘要:解题思路:递归注意事项:参考代码:#include<stdio.h>#include <stdlib.h>int qh(int n);int main(){ int n, i = 1; float s…… 题解列表 2020年11月19日 0 点赞 0 评论 1206 浏览 评分:9.9
[编程入门]有规律的数列求和-题解(C语言代码) 摘要:解题思路: 先了解数学规律,通过该数列可知,后一项的分母为前一项的分子,后一项的分子为前一项的分子分母之和。可使用for语句分别求出每一项,再加起来。注意事项:第一项不在规律之中,不加入循环。参考代码…… 题解列表 2020年11月20日 1 点赞 0 评论 811 浏览 评分:9.9
蓝桥杯算法提高VIP-单词个数统计-题解(Python代码) 摘要:解题思路:注意事项:参考代码:a=list(map(list,input().split()))print(len(a))代码太短也没办法。。。…… 题解列表 2020年11月20日 0 点赞 0 评论 665 浏览 评分:9.9
人民币问题-题解(C语言代码)只需要一层循环 摘要:```c 只需要一层循环即可。 #include int main() { int n; while(scanf("%d",&n)!=EOF) { int i,len…… 题解列表 2020年11月20日 0 点赞 0 评论 763 浏览 评分:9.9
[递归]母牛的故事-题解(C语言代码) 摘要:新手,不喜勿喷。参考代码:#include int f(int n); int main(void) { int n, x; while (scanf("%d", &n) == 1) { …… 题解列表 2020年11月20日 0 点赞 0 评论 1182 浏览 评分:9.9
[编程入门]求和训练-题解(C语言代码) 摘要:#include<stdio.h> #include<math.h> int main(void) { int a, b, c; double sum = 0, i; scanf("%…… 题解列表 2020年11月20日 0 点赞 0 评论 939 浏览 评分:9.9