1228: 输出n以内的自然数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:62
Solved:25
Description
通过for语句将n以内的自然数进行 输出(不包括n,每个数字后跟着一个空格)
Input
n
Output
n以内(不含n)的自然数(包括0)
Sample Input Copy
10
Sample Output Copy
0 1 2 3 4 5 6 7 8 9