2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[8] = {0}, n = 0, max = 0, ans = 0; …… 题解列表 2022年11月07日 0 点赞 0 评论 304 浏览 评分:0.0
2917: 奇数单增序列 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n = 0, a[505] = {0}, q = 0; scanf("%d…… 题解列表 2022年11月07日 0 点赞 0 评论 296 浏览 评分:0.0
回文判断(字符串比较)+ 踩坑经过 摘要:解题思路: 回文数:是从左到右读和从右到左读都一样的数字。 思路:既然题目要求使用字符串来解决,无非就是字符串的比较问题。先使用一个for循…… 题解列表 2022年11月07日 0 点赞 1 评论 348 浏览 评分:0.0
c语言蓝桥杯1446题解 摘要:解题思路:由题意能看出是求三个数的最小公倍数.关键就是把三给数的最小公倍数代码写出就可以解了.注意事项:可以先把最大公约数求出,再把算出最小公倍数,最后调用函数.参考代码:#include<stdio…… 题解列表 2022年11月07日 0 点赞 0 评论 250 浏览 评分:0.0
c语言蓝桥杯2263题解 摘要:解题思路:数学思维.简单思路注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,a,b=0; ///i瓶子数,j瓶盖数 sc…… 题解列表 2022年11月07日 0 点赞 0 评论 295 浏览 评分: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 评论 352 浏览 评分: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 评论 287 浏览 评分: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 评论 269 浏览 评分:0.0
1028: [编程入门]自定义函数求一元二次方程(C语言) 摘要:解题必备知识:求一元二次方程组的方法,当δ小于0时,得到共轭复数,公式为注意这里的根号下内容要改成原来的负数注意事项:本人调试中出现的一些错误:①函数在复制之后忘记改名,其中的1 2 3有重名②s只能…… 题解列表 2022年11月07日 0 点赞 0 评论 351 浏览 评分:0.0
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int a[5][5],m,n; for…… 题解列表 2022年11月07日 0 点赞 0 评论 286 浏览 评分:0.0