题解 2807: 银行利息

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

筛选

for循环c语言版

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

题解 2807:计算金额(for)

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

2025/7/28刷题记录

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