Update max_product_cutting.java (#647)

This commit is contained in:
Night Cruising 2023-07-24 03:05:57 +08:00 committed by GitHub
parent 17f995b432
commit 41db3701ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,6 +35,6 @@ public class max_product_cutting {
// 贪心算法 // 贪心算法
int res = maxProductCutting(n); int res = maxProductCutting(n);
System.out.println("最大切分乘积为" + res); System.out.println("最大切分乘积为 " + res);
} }
} }