Fahad/MCG-CS/Code/Fibonaci.kcl
author Chengsong
Mon, 10 Jul 2023 14:32:48 +0100
changeset 663 0d1e68268d0f
parent 45 7545b1bc1514
permissions -rw-r--r--
more explanation for the name "closed form" and their intuition

var fib = 0;
print "Enter a number to calculate fibonaci";
read fib;
fib = fib + 1;

var a = 0;
var b = 1;

var i = 0;
for i = 0 to fib do
	var temp = a;
	a = b;
	b = temp + b;
end;

print "The result is:";
print b;

read b;