1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 摘要:参考代码:#include<stdio.h>int main(){ int R,Y,i,x; float M; scanf("%d %f %d",&R,&…… 题解列表 2025年11月06日 0 点赞 0 评论 89 浏览 评分:0.0
适合新手的题解 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double b;i…… 题解列表 2025年10月30日 0 点赞 0 评论 66 浏览 评分:0.0
2025/7/28刷题记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int R,M,Y; scanf("%…… 题解列表 2025年07月28日 0 点赞 0 评论 121 浏览 评分:0.0
题解 2807: 利息计算问题。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int r,m,y; scanf("%d%d%d\n",&r,&…… 题解列表 2025年01月25日 0 点赞 0 评论 308 浏览 评分:0.0
题解 2807:计算金额(for) 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())for i in range(c): b *= (1+a/100)print(int(b…… 题解列表 2024年07月29日 0 点赞 0 评论 367 浏览 评分:0.0
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 评论 315 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月11日 0 点赞 0 评论 227 浏览 评分:9.9
很好理解,注意变量 摘要:解题思路:注意事项:%.0lf,会四舍五入参考代码:#include<stdio.h>int main(){ int y; double m,r; scanf("%lf%lf%d",…… 题解列表 2023年11月26日 0 点赞 0 评论 488 浏览 评分:9.9
2807: C++解题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年11月17日 0 点赞 0 评论 312 浏览 评分:2.0
for循环c语言版 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int Y; float M,R; scanf("%f %f %d",&R,&M,&Y); …… 题解列表 2023年11月04日 0 点赞 0 评论 295 浏览 评分:0.0