题解 1955: 贷款计算

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

筛选

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: 贷款计算

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

贷款计算。。。

摘要:解题思路:注意事项:注意单位的换算,本金以万元为单位,但输出是以元为单位。还有是计算第一个月的还款金额,已归还的金额数为零参考代码:#include<iostream>using namespace ……

贷款计算题解

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

简单输出易懂贷款计算

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

贷款计算而已嘛

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