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 1017. Staircases

What does extended mean?
Posted by xxxx 26 Jul 2004 06:15
I don't know how to use extended I get WA in extend!
Re: What does extended mean?
Posted by zzzlll 3 Jan 2007 23:08
>in var you must write extended
  ex:
  var
  a:extended;
>but in the program you can not use in with for
 but outhers you can
  ex: repeat
      a:=a+1;
     until a=100000;
>you must not use it in array
      eror ex:
          c:array[1..1000] of extended;