题解 2807: 银行利息

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

筛选

很好理解,注意变量

摘要:解题思路:注意事项:%.0lf,会四舍五入参考代码:#include<stdio.h>int main(){    int y;    double m,r;    scanf("%lf%lf%d",……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main {   public static void main(String[] args)    ……

python 编写题解 2807

摘要:参考代码:R, M, Y = map(int, input().split()) for _ in range(Y):     M += M * (R * 0.01) print("%.d" %……