diff --git "a/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/exercies.md" "b/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/exercies.md" index dfafbed876d09a7a14b2398923d403c32ff4766f..30f80f79d2f675dceec6b925778672aa039b3301 100644 --- "a/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/exercies.md" +++ "b/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/exercies.md" @@ -7,16 +7,16 @@ 小明每月可支配还款额为3000元。不考虑存款的其它收益,计算不同还款方案最终利息支出总额 ## 输入描述 -输入还款月份和金额,最多3次。如[[10, 10000], [20, 10000]]即10月提前还款10000,20月提前还款10000,总共还款2次. +输入还款月份和金额,月份和金额之间用空格,二者都是正整数。如10月提前还款10000,20月提前还款10000,则输入:10 10000 20 10000 ## 输出描述 -输出最终利息总额 +输出最终利息总额,四舍五入保留2位小数 ## 输入样例 -[[20, 60000]] +20 6000 ## 输出样例 -3590 +3590.00 ## 提示 1. 月数为1-36的正整数,金额为正整数 diff --git "a/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/1.in" "b/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/1.in" index 0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- "a/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/1.in" +++ "b/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/1.in" @@ -1 +0,0 @@ -[] \ No newline at end of file diff --git "a/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/2.in" "b/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/2.in" index a8df232a7c0c6629cbdac8f296a2ded38439be63..2fb3fe31c222f0c0bee2e8d840f8217c93892e37 100644 --- "a/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/2.in" +++ "b/exercises/Leo/\344\270\255\347\255\211/\346\217\220\345\211\215\350\277\230\346\254\276/test_cases/2.in" @@ -1 +1 @@ -[[20, 60000]] \ No newline at end of file +20 60000 \ No newline at end of file