摘要: public class StringDecrement { public static void main(String[] args) { String str = "1234567890"; // 循环条件:当字符串长度大于6时,继续递减 while (str.length() > 6) { 阅读全文
posted @ 2025-10-16 08:58 贩卖长江水 阅读(2) 评论(0) 推荐(0)