标签:case 利用 style 判断 bsp color return 条件 使用
public class Solution { public int Sum_Solution(int n) { int sum = n; boolean re = (n!=0&&(sum += Sum_Solution(n -1))>0); return sum; } }
标签:case 利用 style 判断 bsp color return 条件 使用
原文地址:https://www.cnblogs.com/MoonBeautiful/p/13081343.html