有规律的数列求和c语言 摘要:参考代码:#include <stdio.h> long long fibonacci(int n); int main() { int N,i; double sum; long…… 题解列表 2024年12月08日 0 点赞 0 评论 307 浏览 评分:0.0
字典写了一遍 摘要:解题思路:试了试字典写法注意事项:有的慢,还可以优化,个人水平不足,供各位参考参考代码:d=[]d1={}n,m=map(int,input().split())for i in range(n): …… 题解列表 2024年12月08日 0 点赞 0 评论 27 浏览 评分:0.0
编写题解 2797: 最高的分数 摘要:解题思路:本题使用打擂台法解决注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n;cin>>n; …… 题解列表 2024年12月08日 1 点赞 0 评论 63 浏览 评分:10.0
编写题解 1765: 循环入门练习2 摘要:解题思路:注意事项:注意这道题有两种解法参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int sum=0;for(int…… 题解列表 2024年12月08日 0 点赞 2 评论 64 浏览 评分:9.9
C语言 两个数组+3个for循环解决问题 摘要:解题思路: 用 数组b 的下标记录,我们输入的 数组a 的各个值出现的次数例如 a[6]={ 5, 2, 3, 2, 2, 5 } ;因为 数组a 的最大值是5 ,所以 数组b 的下标最大值也是5那…… 题解列表 2024年12月08日 0 点赞 0 评论 58 浏览 评分:0.0
编写题解 3010: 奇偶数之和 摘要:解题思路:注意事项:注意要定义两个不同的sum!参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n;cin>…… 题解列表 2024年12月08日 0 点赞 2 评论 50 浏览 评分:9.9
编写题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=0; cin>>n; …… 题解列表 2024年12月08日 1 点赞 2 评论 153 浏览 评分:10.0
2751: 超级玛丽游戏题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<" ********"…… 题解列表 2024年12月08日 0 点赞 2 评论 77 浏览 评分:9.9
1123: C语言训练-列出最简真分数序列* 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; for(i = 1;i<40;i++) if (i == 1) { printf(…… 题解列表 2024年12月08日 0 点赞 0 评论 74 浏览 评分:0.0
循环的嵌套 处理 输入与输出 摘要:解题思路:通过两层循环达到输入二维数组以及输出二维数组的效果,从而达到二维数组转置的效果。注意事项:在使用printf输出时,注意目标所需要的效果,即space,换行。参考代码:#include <s…… 题解列表 2024年12月08日 0 点赞 0 评论 141 浏览 评分:10.0