Fahad/MCG-CS/Code/Factorial2.kcl
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Tue, 02 Feb 2016 02:27:16 +0000
changeset 94 5b01f7c233f8
parent 45 7545b1bc1514
permissions -rw-r--r--
proved also finiteness of non-problematic values

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;