第10711题 判断
判断给定Python代码在输入为大于0的整数时,输出一定为-N这一说法是否正确
N = int(input())
total = 0
for i in range(-N,N,2):
    total += i
print(total)
A

正确

B

错误