1148: C语言训练-计算1977!* 摘要:解题思路: 利用数组进行大数计算注意事项: 没事的,背下来就好了!!!参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2024年03月12日 1 点赞 0 评论 434 浏览 评分:9.9
python 2803: 整数的个数 摘要:参考代码:k = int(input()) arr = map(int, input().split()) one, five, ten = 0, 0, 0 for i in arr: …… 题解列表 2024年03月12日 0 点赞 1 评论 452 浏览 评分:9.9
1159: 偶数求和(还不错) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,m; int num[100]; num…… 题解列表 2024年03月12日 1 点赞 0 评论 311 浏览 评分:9.9
求分数序列和 摘要:解题思路:斐波那契数列n-2项/n-1项目注意事项:输出格式参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin…… 题解列表 2024年03月12日 1 点赞 0 评论 336 浏览 评分:9.9
计算分数加减表达式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; float s=0.0; cin>>n; fl…… 题解列表 2024年03月12日 1 点赞 0 评论 341 浏览 评分:9.9
1160: 出圈(好东西哈) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring> //memset()必备using namespace std;in…… 题解列表 2024年03月12日 0 点赞 0 评论 350 浏览 评分:9.9
表达式括号匹配:c++ 摘要:#### 原题链接 [题目 3071: 表达式括号匹配(stack)](https://www.dotcpp.com/oj/problem3071.html?sid=15741963&lang=1#…… 题解列表 2024年03月13日 0 点赞 0 评论 843 浏览 评分:9.9
弧匹配检验:C++ , map容器 摘要:#### 原题链接 [题目 3072: 括弧匹配检验](https://www.dotcpp.com/oj/problem3072.html?sid=15742665&lang=1#editor "…… 题解列表 2024年03月13日 0 点赞 0 评论 452 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年03月13日 0 点赞 0 评论 332 浏览 评分:9.9
python 编写题解 2807 摘要:参考代码:R, M, Y = map(int, input().split()) for _ in range(Y): M += M * (R * 0.01) print("%.d" %…… 题解列表 2024年03月13日 0 点赞 0 评论 335 浏览 评分:9.9