用Python寫一個函式實現1+2+...+n的功能。 方法1、使用for迴圈. def accSum(n): sum = 0 for i in range(1, n+1): #[1,n+1) sum += i return sum ...
確定! 回上一頁