蓝桥杯算法提高VIP-勾股数 (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int a,b,c; for(a=1;a<=500;a++) { for(b=1;b<=500;b++) …… 题解列表 2019年02月14日 0 点赞 0 评论 325 浏览 评分:0.0
编写题解 1504: 蓝桥杯算法提高VIP-勾股数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int a=1;a<=1000;a++) { …… 题解列表 2022年04月25日 0 点赞 0 评论 107 浏览 评分:0.0
1504: 蓝桥杯算法提高VIP-勾股数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ for(int a=1;a<=1000/3;a++) for(int b=a+1;b<=1000-a;b++…… 题解列表 2021年03月02日 0 点赞 0 评论 95 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cstdio> #include<cmath> using nam…… 题解列表 2021年11月29日 0 点赞 0 评论 123 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数-题解(Python代码) 摘要:解题思路:通过a的平方+b的平方=c的平方可得出第三行代码,注意事项:参考代码:for a in range(1,334): for b in range(a+1,501): c …… 题解列表 2020年12月20日 0 点赞 0 评论 285 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c=0; for(a=3;a<=400;a++) for(b=a+1;b<=500;b++) …… 题解列表 2018年03月01日 1 点赞 0 评论 638 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数 (C语言代码) 摘要:解题思路:穷举加判断注意事项:参考代码:#include<stdio.h> int main() { int a,b,c; for(a=3;a<500;a++) for(b=a;b<500;b++)…… 题解列表 2019年05月07日 0 点赞 0 评论 287 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数 全网最简单 摘要: public class 勾股数 { public static void main(String[] args) { for (int i = 3; i …… 题解列表 2021年03月25日 0 点赞 0 评论 142 浏览 评分:0.0
蓝桥杯算法提高VIP-勾股数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { for(int i=1;i<=1000;i++) …… 题解列表 2018年04月11日 0 点赞 0 评论 575 浏览 评分:0.0