考试
1970-01-01 08:00:00

编写一个程序,使用for循环输出0——10之间的整数

题目描述

编写一个程序,使用for循环输出0——10之间的整数

答案解析

for i in range(1,11): print(i)

加载中...
AI正在思考中,请稍候...