1316: 【循环】输出1到n的偶数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:190
Solved:135
Description
输入一个正整数 n, 输出 1~n 中的所有偶数。
Input
一个正整数 n。
Output
1~n 中的所有偶数,每个一行。
Sample Input Copy
10
Sample Output Copy
2
4
6
8
10