程序在Python中查找前n个奇数的和
假设我们有一个数字n,我们必须找到前n个正奇数之和。
因此,如果输入为7,则输出为49,因为[1 + 3 + 5 + 7 + 9 + 11 + 13] = 49
为了解决这个问题,我们将遵循以下步骤-
如果n等于0,则
返回0
sum:= 1,count:= 0,temp:= 1
当计数<n-1时,
温度:=温度+ 2
总和:=总和+温度
数:=数+ 1
返还金额
让我们看下面的实现以更好地理解-
示例
class Solution:def solve(self, n):
if n == 0:
return 0
sum = 1
count = 0
temp = 1
while(count<n-1):
temp += 2
sum += temp
count += 1
return sum
ob = Solution()
print(ob.solve(7))
输入值
7
输出结果
49
以上是 程序在Python中查找前n个奇数的和 的全部内容, 来源链接: utcz.com/z/351565.html