Есть ответ 👍

Составить программу нахождения суммы всех целых чисел от 25 до 125, которые кратны 7 паскаль

214
498
Посмотреть ответы 2

Ответы на вопрос:

nastya11w
4,4(47 оценок)

Program z1;   var     a,s: integer; begin   s: =0;   for a: =25 to 125 do     if a mod 7=0 then s: =s+a; writeln(s); end.
Viki3888
4,8(79 оценок)

Bool double=true; for(int i=1; i< array.length; i++) { if(array[i-1]*2! =array[i]) { double=false; } } if(double) cout< < "yes"; else cout< < "no";

Популярно: Информатика