编程大白的博客
python实现100以内数求和
s1=0
for i in range(1,101):
s1+=i
print(s1)
输出截图如下:
« Previous
线性代数02 线性方程组的解的情况(矩阵的秩)
Next »
go struct{} 空结构体的特点和作用