python分别使用while循环,和for循环打印1-2+3-4+5.......+99的结果。
作者:野牛程序员:2023-11-22 15:31:01python阅读 2488
python分别使用while循环,和for循环打印1-2+3-4+5.......+99的结果。
使用while循环:
result = 0 num = 1 while num <= 99: if num % 2 == 1: result += num else: result -= num num += 1 print(result)
使用for循环:
result = 0 for num in range(1, 100): if num % 2 == 1: result += num else: result -= num print(result)
野牛程序员教少儿编程与信息学奥赛-微信|电话:15892516892