摘要: public class Solution { public int Sum_Solution(int n) { int sum = n; boolean flag =(n>0) && (sum+=Sum_Solution(n-1))>0; return sum; } } 阅读全文
posted @ 2019-05-27 21:50 紫色的雪 阅读(412) 评论(0) 推荐(0)