1264: 1~n的奇数
Memory Limit:256 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:80
Solved:48
Description
[md]
输入一个正整数n,输出从1到n(包括1和n)范围内的所有奇数。
提示:print(x, end = ' ')语句可以输出指定内容,以空格结尾。 [/md]
提示:print(x, end = ' ')语句可以输出指定内容,以空格结尾。 [/md]
Sample Input Copy
5
Sample Output Copy
1 3 5