题解 1955: 贷款计算

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

筛选

1955: 贷款计算

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

编写题解 1955: 贷款计算

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

贷款计算 (C语言代码)

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

贷款计算 (C语言代码)

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

C++实现贷款计算

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    float c;    cin>>a>>……

1955 成员C语言666分

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b,m;float c; scanf ("%d %f %d",&a,&c,&b); m=(a*1……