pascalabcnet/_Presentations/2015 New Features/Programs/04_BigInteger.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

6 lines
96 B
ObjectPascal

begin
var p: BigInteger := 1;
for var i:=2 to 100 do
p *= i;
writeln('100!=',p)
end.