标签:while ret 剑指offer 描述 describe return 使用 esc switch
&&短路原理
-----------------------------------------------------------------------------------------------------------------------
class Solution { public: int Sum_Solution(int n) { int ans= 0; n && (ans = n + Sum_Solution(n-1)); return ans; } };
标签:while ret 剑指offer 描述 describe return 使用 esc switch
原文地址:https://www.cnblogs.com/evidd/p/10566831.html