Print all numbers in the range from 15 to 125 that are even and multiples of 3

Since the required programming language is not specified, we will write such a program in Pascal. From the condition it is obvious that you will need to use a loop with the condition:
var a: integer;
begin
for a: = 15 to 125 do
begin
if (a mod 2 = 0) and (a mod 3 = 0) then writeln (a);
a: = a + 1;
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.