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

PLS help where is my mistake?
Posted by beckbumer 28 Feb 2008 07:56
const n=4;
var i:integer;a:array[1..n]of int64;
begin
for i:=1 to n do
readln(a[i]);
for i:=n downto 1 do
writeln(sqrt(a[i]):0:4);
end
Re: PLS help where is my mistake?
Posted by awpris 28 Feb 2008 08:32
There algorithm more complex

Edited by author 28.02.2008 08:35