Problem1575--C Programming Practicals 4 Switch for Solutions

1575: C Programming Practicals 4 Switch for Solutions

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 253  Solved: 168
[Submit] [Status] [Web Board] [Creator:]

Description

Write a C program to print all numbers between 1 to 200 which divided by 5 and the remainder will be 4, also show how many these numbers are there.

Input

无需输入

Output

4 9 14 19 24 29 34 39 44 49 54 59 64 69 74 79 84 89 94 99 104 109 114 119 124 129 134 139 144 149 154 159 164 169 174 179 184 189 194 199 There are 40 numbers

Sample Output Copy

4
9
14
19
24
29
34
39
44
49
54
59
64
69
74
79
84
89
94
99
104
109
114
119
124
129
134
139
144
149
154
159
164
169
174
179
184
189
194
199
There are 40 numbers

Source/Category

122