题解 2807: 银行利息

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

循环累乘法实现复利

摘要:解题思路:注意事项:百分数要转换成小数参考代码:#include<stdio.h>#include<math.h>int main(){ int R=0,M=0,Y=0; sc……

给用Java的开一下荒土

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a……

for循环c语言版

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int Y;    float M,R;    scanf("%f %f %d",&R,&M,&Y);  ……

2025/7/28刷题记录

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int R,M,Y; scanf("%……

题解 2807:计算金额(for)

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())for i in range(c):    b *= (1+a/100)print(int(b……

适合新手的题解

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double b;i……

2807: C++解题

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai……