Урок 11 Задача 11
Primary tabs
Вывести на экран все числа от 4 до 100 с шагом 4, т.е.:
4 8 12 16.......100
program u11z11; var a,b,i: integer; begin i:=0; while (i <= 96) do begin i:=i + 4; write(i,' '); end; readln(); end.
- Log in to post comments
- 387 reads