* fixed test

This commit is contained in:
florian 2005-02-08 20:48:52 +00:00
parent 2a9e59c978
commit d870233621
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
program prueba;
uses crt;
uses crt,math;
var
i,resultado,exponente:integer;
begin

View File

@ -1,7 +1,7 @@
program test_0_to_power_6;
uses
crt;
crt,math;
var
result,number,exponent : integer;
begin

View File

@ -1,3 +1,5 @@
uses
math;
Begin
WriteLn(power(2,31));
end.