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

Discussion of Problem 1001. Reverse Root

why???
Posted by [FoH]^^richman^^ 10 May 2008 22:52
  program  problem_1001;
  var a : array[1..1000000]of int64;
   (*-----------------------------------------------*)
   procedure import;
   var i : longint;
       n : longint;
   begin
        n := 0;
        while not seekeof do
              begin
                   inc(n);
                   read(a[n]);
              end;
        for i := n downto 1 do writeln(sqrt(a[n]):0:4);
   end;
   (*-----------------------------------------------*)
   Begin
        import;
   End.