c语言蓝桥杯1446题解 摘要:解题思路:由题意能看出是求三个数的最小公倍数.关键就是把三给数的最小公倍数代码写出就可以解了.注意事项:可以先把最大公约数求出,再把算出最小公倍数,最后调用函数.参考代码:#include<stdio…… 题解列表 2022年11月07日 0 点赞 0 评论 287 浏览 评分:0.0
c语言蓝桥杯2263题解 摘要:解题思路:数学思维.简单思路注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,a,b=0; ///i瓶子数,j瓶盖数 sc…… 题解列表 2022年11月07日 0 点赞 0 评论 341 浏览 评分:0.0
题解 2912: 最长平台 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int n,count=1,max=1,a[10…… 题解列表 2022年11月07日 0 点赞 0 评论 396 浏览 评分:0.0
1019简单易懂的自由下落 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float M,N,h,a,i,t; float sum; sum=0; s…… 题解列表 2022年11月07日 0 点赞 0 评论 337 浏览 评分:0.0
最原始的求 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c,d,e,n; scanf("%d",&n); int res…… 题解列表 2022年11月07日 0 点赞 0 评论 314 浏览 评分:0.0
1028: [编程入门]自定义函数求一元二次方程(C语言) 摘要:解题必备知识:求一元二次方程组的方法,当δ小于0时,得到共轭复数,公式为注意这里的根号下内容要改成原来的负数注意事项:本人调试中出现的一些错误:①函数在复制之后忘记改名,其中的1 2 3有重名②s只能…… 题解列表 2022年11月07日 0 点赞 0 评论 404 浏览 评分:0.0
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int a[5][5],m,n; for…… 题解列表 2022年11月07日 0 点赞 0 评论 347 浏览 评分:0.0
因式分解 CCCCC 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i; scanf("%d",&n); for(i=…… 题解列表 2022年11月07日 0 点赞 1 评论 318 浏览 评分:0.0
求具有abcd=(ab+cd)2性质的四位数(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,a,b; for(i=1000;i<10000;i++)…… 题解列表 2022年11月07日 0 点赞 0 评论 386 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器(c) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int choise_F(char A);int main(){ int x,y; char A; while(scanf("…… 题解列表 2022年11月07日 0 点赞 0 评论 326 浏览 评分:0.0