# 求1+2+3+……+10的累加结果 s=0 for x in range(1,11):

# 求1+2+3+……+10的累加结果 s=0 for x in range(1,11): s=s+x print(s) 求这段代码的程序框图!急急急

 

就这么个for循环的框图你自己没有能力画吗?