题解 1955: 贷款计算

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

筛选

贷款计算 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){    double c,a,b;    int n;    scanf("%lf%lf%lf",&a,&b,&……

编写题解 1955: 贷款计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int cal(int a ,float b ,int c ,int d){    int pb = 0;    while(d--) ……

1955: 贷款计算

摘要:```cpp #include using namespace std; int main() { int total,month,money; float rate; ……

编写题解 1955: 贷款计算

摘要:解题思路:如果输出为%d那么500*0.004为0,肯定不行输出时为%.0f就可以让500*0.004等于20了,用f算出20.000~这个值,再用.0把小数点去掉。注意事项:参考代码:#includ……

贷款计算-题解(Python代码)

摘要:解题思路:用列表形式进行计算注意事项:列表索引值的转换参考代码:a=input().split()a[0]=int(a[0])a[0]=a[0]*10000a[2]=int(a[2])a[1]=flo……