|
|
DataMuseum.dkPresents historical artifacts from the history of: CP/M |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about CP/M Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 256 (0x100)
Types: TextFile
Names: »POTENS.PAS«
└─⟦49cd49952⟧ Bits:30009431 50004848
└─⟦0c326962c⟧
└─⟦this⟧ »POTENS.PAS«
program sumofpowers (input,output);
var n,x,power,i,sum : 0..maxint;
begin
read(n);sum:=0;
for x := 1 to n do
begin
power:=1;for i:=1 to x do power:=power*x;
sum:= sum + power
end;
writeln(sum)
end.
«eof»