ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Common Board

How can I use coprocessor floating point (e.g. Extended type in Pascal) ?
Posted by Sergey V.Kviat 15 Apr 2001 14:12
In Borland Pascal I just need to use key {$N}. When I try
to sumbit a solution with Extended Type, I get
a "Compilation Error" message.

So?
I use {$N+} and my program compiled
Posted by Nazar Revutsky 17 Apr 2001 01:57
{$N+}
var
   a,r,x,y,sq,f:double;

function acos(z:double):double;
begin
     acos:=arctan(sqrt(1-z*z)/z);
end;

begin
....
end.
The compiler directive sis your worry, We do not set any ones except that set the console type of compilation
Posted by Marat Bakirov 17 Apr 2001 17:29