From 6a2d913333bedc38ad9d67e9b9cc8044cbfee73f Mon Sep 17 00:00:00 2001 From: Cys Date: Thu, 10 Oct 2024 17:29:58 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=88=E6=98=B1=E6=9D=89=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=8A=9F=E8=83=BD2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uml10_10.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uml10_10.java b/uml10_10.java index ef8bfa8..79d6d0b 100644 --- a/uml10_10.java +++ b/uml10_10.java @@ -6,7 +6,7 @@ public class uml10_10 { public static int toDecimal(String number, int base) { int decimal = 0; int power = 0; - + //还好还好 // 从字符串的末尾开始处理 for (int i = number.length() - 1; i >= 0; i--) { char digit = number.charAt(i);