题解 1955: 贷款计算

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

筛选

题解 1955: 贷款计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int sum,month,ret;     double rate;     scanf……

简单输出易懂贷款计算

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

贷款计算 (C语言代码)

摘要:解题思路:题目最终结果是取整,不是四舍五入;注意事项:参考代码:#include <cstdio> #include <cstdlib> #include <iostream> #include……

贷款计算 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int zonge, time, repay = 0; float r……

1955 成员C语言666分

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

贷款计算题解

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