2751: 超级玛丽游戏题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<&quo…… 题解列表 2024年12月08日 0 点赞 2 评论 47 浏览 评分:9.9
编写题解 2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,sum=…… 题解列表 2024年12月08日 0 点赞 2 评论 109 浏览 评分:9.9
编写题解 3010: 奇偶数之和 摘要:解题思路:注意事项:注意要定义两个不同的sum!参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long …… 题解列表 2024年12月08日 0 点赞 2 评论 38 浏览 评分:9.9
C语言 两个数组+3个for循环解决问题 摘要:解题思路: 用 数组b 的下标记录,我们输入的 数组a 的各个值出现的次数例如 a[6]={ 5, 2, 3, 2, 2, 5 } ;因为 数组a 的最大值是5 ,所以…… 题解列表 2024年12月08日 0 点赞 0 评论 45 浏览 评分:0.0
编写题解 1765: 循环入门练习2 摘要:解题思路:注意事项:注意这道题有两种解法参考代码:#include<bits/stdc++.h>using namespace std;int main(){ &nb…… 题解列表 2024年12月08日 0 点赞 2 评论 47 浏览 评分:9.9
编写题解 2797: 最高的分数 摘要:解题思路:本题使用打擂台法解决注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n;ci…… 题解列表 2024年12月08日 0 点赞 0 评论 42 浏览 评分:0.0
字典写了一遍 摘要:解题思路:试了试字典写法注意事项:有的慢,还可以优化,个人水平不足,供各位参考参考代码:d=[]d1={}n,m=map(int,input().split())for i in range(n): …… 题解列表 2024年12月08日 0 点赞 0 评论 16 浏览 评分:0.0
有规律的数列求和c语言 摘要:参考代码:#include <stdio.h> long long fibonacci(int n); int main(…… 题解列表 2024年12月08日 0 点赞 0 评论 236 浏览 评分:0.0
简单的写完就行了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h> int main(){ int i; for(i = 1000;i…… 题解列表 2024年12月08日 0 点赞 0 评论 64 浏览 评分:0.0
自由下落的距离计算C语言 摘要:参考代码:#include <stdio.h> int main() { int M,N,i; double h,m; h=0,m=…… 题解列表 2024年12月08日 1 点赞 0 评论 121 浏览 评分:0.0