From 1ca360d331fb1183007c480caf7516d7cac8f6fe Mon Sep 17 00:00:00 2001 From: zhanghao1 Date: Fri, 24 Feb 2023 18:21:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=E9=97=AE=E9=A2=98?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../exercies.md" | 8 ++++---- .../test_cases/1.in" | 1 - .../test_cases/2.in" | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) 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 dfafbed..30f80f7 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 0637a08..e69de29 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 a8df232..2fb3fe3 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 -- GitLab