摘要: public class Sum { public static int count(int n) { if(n=1) return 1; if (n > 1) { return count(n - 1) + n; } } } 阅读全文
posted @ 2021-06-22 23:34 hippoppower 阅读(485) 评论(0) 推荐(0)