随笔分类 -  python & C

摘要:python 实现: 1 def main(): 2 S_sum = 0 3 count = 1 4 while count <= 100: 5 S_sum += count 6 count += 1 7 print(S_sum) 8 9 10 if __name__ == "__main__": 阅读全文
posted @ 2020-03-19 17:49 阿默0 阅读(138) 评论(0) 推荐(0)