Write a program to display all odd numbers from -10 to 50.

program zz1;
var i: integer; // set the loop variable of integer type
begin
for i: = – 10 to 50 do // organize a loop from the first given number to the last given number
if (i mod 2 = 1) or (i mod 2 = -1) // check if the number is not divisible by two, then display it on the screen in a line separated by a space
then write (i, ”);
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.