|
|
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.BAK«
└─⟦49cd49952⟧ Bits:30009431 50004848
└─⟦0c326962c⟧
└─⟦this⟧ »POTENS.BAK«
program sumofpowers (input,output);
var n,x,power,i,sum : 0..maxint;
begin
read(n);sum:=0;
for xx := 1 to n do
begin
power:=1;for i:=1 to xx do power:=powers*x;
sum:= sum + power
end;
writeln(sum)
end.
«eof»