tw0852.pp 280 B

12345678910111213
  1. type
  2. TFloat80Array = array [0..1000000] of Extended;
  3. procedure AddFloat80Proc(var Vector1; const Vector2; Count: Integer);
  4. var
  5. I: Integer;
  6. begin
  7. for I:=0 to Count - 1 do
  8. TFloat80Array(Vector1)[I]:=TFloat80Array(Vector1)[I] + TFloat80Array(Vector2)[I];
  9. end;
  10. begin
  11. end.