Здесь Вы можете найти ответы на многие вопросы или задать свой вопрос!
var i,s: integer;
begin
for i: = 100 to 200 do
if i mod 17=0 then s: =s+i;
writeln(s);
end.
var
a,b: real;
readln(a,b);
if (a> 0) or (b< -2) then
writeln('истинно')
else
writeln('ложно');
#include < cstdlib> #include < iostream> using namespace std; int main(int argc, char *argv[]){ int n; cout< < "введите количество элементов массива."< < endl; cin> > n; int mas1[n]; int mas2[n]; for(int i=0; i< n; i++){ mas1[i] = rand()%100; //заполняем массив случайными числами от 0 до 100 if(mas1[i]%10 == 4) { mas2[i]=mas1[i]/2; cout< < "замена! "; } else {cout< < "\t"; mas2[i]=mas1[i]; } cout< < mas1[i]< < '\t'< < mas2[i]< < endl; } system("pause"); return exit_success; }
сред. арифметическое = сумма всех чисел разделить на количество
(a1 + a2 + a3 + a4 + a5) / 5
Популярные вопросы