贷款计算-题解(Python代码) 摘要:解题思路:用列表形式进行计算注意事项:列表索引值的转换参考代码:a=input().split()a[0]=int(a[0])a[0]=a[0]*10000a[2]=int(a[2])a[1]=flo…… 题解列表 2020年08月17日 0 点赞 0 评论 808 浏览 评分:9.9
贷款计算-题解(Java代码)全是C语言的,让我来写下第一个java题解 摘要:import java.util.Scanner; public class Main{ /** 贷款计算 * @param args */ public static …… 题解列表 2020年09月29日 0 点赞 0 评论 658 浏览 评分:9.9
贷款计算-题解(C语言代码) 摘要:```c #include int main(){ int d1,d2; float y; scanf("%d%f%d",&d1,&y,&d2); printf("%.0d", (…… 题解列表 2020年10月04日 0 点赞 0 评论 1218 浏览 评分:9.9
贷款计算-题解(C语言代码) 摘要:```c #include int main() { int sum,month; //定义变量 double per_month=0,rates; //定义为双精度浮…… 题解列表 2020年11月13日 0 点赞 0 评论 390 浏览 评分:0.0
贷款计算-题解(C语言代码),有注释,易懂(两种方法) 摘要:解题思路:直接来动手注意事项: 1、双精度的输入问题 2、把与题目无关的语句给注释掉参考代码:#include "stdio.h" #include "math.h" //floor函数…… 题解列表 2020年11月25日 0 点赞 0 评论 689 浏览 评分:0.0
贷款计算-题解(C语言代码) 简单容易理解! 摘要:解题思路: 注意题目看要求的是否为整数或者为浮点数注意事项:参考代码:#include <stdio.h>int main(){ int y=0,x,m; float a; scanf("%d%f%…… 题解列表 2020年11月28日 0 点赞 2 评论 1693 浏览 评分:9.9
1955: 贷款计算 摘要:解题思路:注意事项:输出结果强转为 int 实现向下取整参考代码:#include <stdio.h> int main(){ int months; float total,rate,re…… 题解列表 2021年03月05日 0 点赞 0 评论 146 浏览 评分:0.0
编写题解 1955: 贷款计算 摘要:解题思路:如果输出为%d那么500*0.004为0,肯定不行输出时为%.0f就可以让500*0.004等于20了,用f算出20.000~这个值,再用.0把小数点去掉。注意事项:参考代码:#includ…… 题解列表 2021年04月06日 0 点赞 0 评论 849 浏览 评分:9.9
编写题解 1955: 贷款计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int cal(int a ,float b ,int c ,int d){ int pb = 0; while(d--) …… 题解列表 2021年05月16日 0 点赞 0 评论 916 浏览 评分:7.0
编写题解 1955: 贷款计算(c语言代码) 摘要:```c #include int main() { double a,b,c; int s; scanf("%lf%lf%lf",&a,&b,&c); s=a*10000/c+a*10…… 题解列表 2021年08月03日 0 点赞 0 评论 230 浏览 评分:0.0