题解 1955: 贷款计算

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

筛选

贷款计算题解

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

1955: 贷款计算

摘要:解题思路:注意事项:参考代码:s,l,m = map(float,input().split())print(int(s*10000/m)+int(s*10000*l))……

贷款计算而已嘛

摘要:解题思路:全放在最后输出的时候就好了注意事项:最后输出的时候要是int参考代码:package com.itheima;import java.util.Scanner;public class Te……

1955 成员C语言666分

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

编写题解 1955: 贷款计算

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

编写题解 1955: 贷款计算

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

1955: 贷款计算

摘要:解题思路:注意事项:输出结果强转为 int 实现向下取整参考代码:#include <stdio.h> int main(){ int months; float total,rate,re……