В одномерном массиве вычислить корень квадратный от произведения отрицательных элементов
Категория: Delphi/Pascal
2012-01-03 20:09:48
code: #pascal
var Mas:array of real; Count, i:Cardinal; Prois:Real; begin //ввод Write('Длина массива?'); Readln(Count); Setlength(Mas, Count); For i:=0 to Count-1 do begin Readln(Mas[i]); end; //Решение Prois:=1; For i:=0 to Count-1 do begin if Mas[i]<0 then Prois:=Prois*Mas[i]; end; if Prois>=0 then Writeln(sqrt(Prois)) else Writeln(sqrt(-Prois),'*i'); end.
автор: SNUPY
Поделиться: