Problem2582--无返回值函数

2582: 无返回值函数

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

输入n,输出1~n的所有整数(无返回值)

Input

10

Output

1 2 3 4 5 6 7 8 9 10

Sample Input Copy

10

Sample Output Copy

1
2
3
4
5
6
7
8
9
10

HINT

返回值类型 函数名(参数类型 参数名1,参数类型 参数名2......参数类型n 参数名n)
执行语句
return 返回值;

Source/Category

函数