题解 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……

题解 2807 YHLX

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

很好理解,注意变量

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

有错误请指出

摘要:解题思路:提前将收入定义为浮点型,方便后面计算注意事项:参考代码:#include <stdio.h>int main(){ int r,y; float m; scanf("%d %f %d",&r……