题解 1504: 蓝桥杯算法提高VIP-勾股数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蓝桥杯算法提高VIP-勾股数

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cstdio> #include<cmath> using nam……

入门必看的题目

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,i; for(a=3;a<1000;a++) { for(b=a;b<1000;b++) ……

暴力C语言解题

摘要:解题思路:第一组整数的勾股数是3,4,5所以可以让a从3开始,b从4开始,c从5开始然后通过暴力的方法解决注意事项:参考代码:#include <stdio.h> int main() {   ……

勾股数(C语言)

摘要:解题思路:三重for循环+勾股定理注意事项:循环的判断条件参考代码:#include <stdio.h>int main(){    int a,b,c;//三角形三条边    for ( a = 1……