• СРОЧНО!!!!
    таблица a[1,25] найти сумму положительных элементов таблицы, произведение отрицательных, среднее арифметическое всех элементов

Ответы 1

  • Program sum;uses Crt;Var i: integer;    sum, p, sr : real;    a : array [1..25] of real;beginClrscr;For i:=1 to 25 do    begin         write ('a[',i,']=');         readln(a[i]);    end;sum:=0;For i:=1 to 25 do begin

    if a[i]>0 then    sum:=sum+a[i];

    end;

    sr:=sum/25;

    For i:=1 to 25 do begin

    if a[i]<0 then    p:=p*a[i];

    end;Writeln ('Sum=',sum:5:2);

    Writeln ('p=',p:5:2);

    Writeln ('Sr=',sr:5:2);readln;end.

    • Автор:

      isiscpnu
    • 5 лет назад
    • 0
  • Добавить свой ответ

Еще вопросы

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years