1672: 【c07】1~n之间的偶数▃
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:6
Solved:6
Description
输入一个正整数n,输出1到n(包括1和n)之间的所有偶数。
Input
一个正整数n。
Output
输出占一行,依次为1到n之间的所有偶数。相邻两个数用一个空格隔开。
Sample Input Copy
8
Sample Output Copy
2 4 6 8