Fahad/MCG-CS/Code/Factorial2.kcl
author Chengsong
Fri, 26 May 2023 23:42:15 +0100
changeset 648 d15a0b7d6d90
parent 45 7545b1bc1514
permissions -rw-r--r--
new amend

var fact = 7;

fact = fact + 1;

var c = 0;
var result = 1;

for c = 1 to fact do
	result = result * c;
end;

print "The factorial is:";
print result;