C语言训练-"水仙花数"问题2-题解(Python代码) 摘要:解题思路:注意事项:参考代码:num=100 while num<1000: if num==int(str(num)[0])**3+int(str(num)[1])**3+int(str…… 题解列表 2020年11月18日 0 点赞 0 评论 908 浏览 评分:9.9
字符串输入输出函数-题解(Python代码) 摘要:解题思路:注意事项:参考代码:def get1(): a=float(input("please input a number:\n")) return adef get2(): b…… 题解列表 2020年11月18日 0 点赞 2 评论 1307 浏览 评分:9.9
蓝桥杯这网站就是针对python,代码输出格式没问题,但交上去格式错误 摘要:解题思路:注意事项:参考代码:n=int(input())a=[[1 for i in range(1,100)] for j in range(1,100)]for i in range(0,n+1…… 题解列表 2020年11月18日 0 点赞 0 评论 1314 浏览 评分:9.9
还有比python简单的吗? 摘要:解题思路:注意事项:参考代码:a,b,c=map(float,input().split())x1=(-b+(b*b-4*a*c)**(1/2))/(2*a)x2=(-b-(b*b-4*a*c)**(…… 题解列表 2020年11月18日 0 点赞 0 评论 1011 浏览 评分:9.9
还有比python简单的吗? 摘要:解题思路:注意事项:参考代码:a,b,c=map(float,input().split())x1=(-b+(b*b-4*a*c)**(1/2))/(2*a)x2=(-b-(b*b-4*a*c)**(…… 题解列表 2020年11月18日 0 点赞 0 评论 524 浏览 评分:9.9
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 评论 745 浏览 评分:9.9
蛇行矩阵-题解(C语言代码) 摘要:解题思路:找行和列的规律: 行:每行数之间形成递增数列:2 3 4 5-------   题解列表 2020年11月18日 0 点赞 0 评论 547 浏览 评分:9.9
蓝桥杯2013年第四届真题-打印十字图-题解(C语言代码)从中心开始做!!! 摘要:解题思路:从中心往四周扩散注意事项:要有信心,我蹦了几次;狗头狗头参考代码:#include<stdio.h>int main(){ char str[125][125]; int no = 0; i…… 题解列表 2020年11月19日 0 点赞 0 评论 1206 浏览 评分:9.9
1671:小九九-题解(Java代码) 摘要:```java public class Main { public static void main(String[] args) { for (int i = 1; i …… 题解列表 2020年11月19日 0 点赞 1 评论 1008 浏览 评分: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 评论 1295 浏览 评分:9.9