Problem2361--有趣的输出(2)

2361: 有趣的输出(2)

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 1  Solved: 1
[Status] [Submit] [Creator:]

Description

输入一个在10~0(包含10和0)以内的整数,输出该数字到0以内的所有偶数(如该数为偶数则包含该数字,每个数字间用空格隔开)。


Input

一个整数n。(0=<n<=10)


Output

该数字到0以内的所有偶数(如该数为偶数则包含该数字,每个数字间用空格隔开)。


Sample Input Copy

4

Sample Output Copy

4 2 0

HINT

switch语句的应用

Source/Category