第18300题
运行以下Python程序,输出结果是?
n = 10
s = 0
m = 1
while m <= n:
    s = s + m
    m = m + 1
print(s)
A

45

B

50

C

55

D

60

提交0次 正确率0.00%
答案解析