3013: 循环控制语句-输出能被4整除但不能被3整除的数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:7
Solved:2
Description
输入n个数,输出所有能被4整除但不能被3整除的数
Input
第一行输入n(1≤n≤100),第二行输入n个整数(1≤每个数≤1000)
Output
输出符合条件的数,空格分隔
Sample Input Copy
8
4 8 12 16 20 24 28 32
Sample Output Copy
4 8 16 20 28 32