Problem1661--22-循环-1-偶数平方值

1661: 22-循环-1-偶数平方值

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

Description

编写程序,要求用户输入一个大于3的正整数n(n>3),然后显示出1~ n的所有偶数平方值。
例如,如果用户输入100,那么程序应该显示出下列内容:
4
16
36
64
100

Input

输入为大于3的正整数n。

Output

1~ n的所有偶数平方值。

Sample Input Copy

100

Sample Output Copy

4
16
36
64
100

Source/Category