question archive The following algorithm is designed to print the beginning of what is known as the Fibonacci sequence
Subject:Computer SciencePrice:2.89 Bought3
The following algorithm is designed to print the beginning of what is known as the Fibonacci sequence. Identify the body of the loop. Where is the initialization step for the loop control? The modification step? The test step? What list of numbers is produced?
Last ← 0;
Current ← 1;
while (Current < 100) do
(print the value assigned to Current;
Temp ← Last;
Last ← Current; and
Current ← Last + Temp)
Purchased 3 times