Урок 10. Задача 7
Primary tabs
Выведите на экран, все четные числа от 35 до 117 и нечетные числа, лежащие в диапазоне от 45 до 99.
var i: Integer; begin for i:=35 to 117 do begin if (i >= 35) and (i <= 117) and (i mod 2 = 1) then write(i, ' ') else if (i >= 45) and (i <= 99) and (i mod 2 <> 1) then write(i, ' '); end; readln(); end.
консоль:
35 37 39 41 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 9 3 94 95 96 97 98 99 101 103 105 107 109 111 113 115 117
- Log in to post comments
- 614 reads