From 41db3701ab0367c12ee2b1f3a11fdbd27487451a Mon Sep 17 00:00:00 2001 From: Night Cruising <77157236+night-cruise@users.noreply.github.com> Date: Mon, 24 Jul 2023 03:05:57 +0800 Subject: [PATCH] Update max_product_cutting.java (#647) --- codes/java/chapter_greedy/max_product_cutting.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codes/java/chapter_greedy/max_product_cutting.java b/codes/java/chapter_greedy/max_product_cutting.java index bdc27c667..1d9164519 100644 --- a/codes/java/chapter_greedy/max_product_cutting.java +++ b/codes/java/chapter_greedy/max_product_cutting.java @@ -35,6 +35,6 @@ public class max_product_cutting { // 贪心算法 int res = maxProductCutting(n); - System.out.println("最大切分乘积为" + res); + System.out.println("最大切分乘积为 " + res); } }