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

help me\ PASCAL wrong answer test:2
Posted by Олександр 21 Feb 2017 04:40
var b:array[1..4] of int64; i:integer;
begin
 for i:=1 to 4 do
 read(b[i]);
 for i:=4 downto 1 do
 writeln(sqrt(b[i]):0:4);
end.
Re: help me\ PASCAL wrong answer test:2
Posted by ToadMonster 21 Feb 2017 14:22
You think there are 4 and only 4 numbers in the input.
Could you quote task fragment declaring it?

Edited by author 21.02.2017 14:22