Write a program that, in a sequence of numbers, counts the number of multiples of 4.

For Pascal: program 4numbers; var x, k: integer; begin k: = 0; write (‘x’); read (x); while x <> 0 do begin if x mod 4 = 0 then k: = k + 1 end; write (‘k =’, k); end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.