728x90 AdSpace

Latest Article



Algorithm pseudo code Fibonacci series using Loop repetitive Control Structure





Write a pseudo code, Features and represent the information on a flow chart that Display the following Fibonacci series using repetitive Control Structure.
0 1 1 2 3 5 8 13……
a=0;
b=1;
Display a
Display b
count=3
DO WHILE count<=MAX
      sum=a+b
      Display sum
      a=b
      b=sum
      count=count+1
LOOP

no image
  • Title : Algorithm pseudo code Fibonacci series using Loop repetitive Control Structure
  • Posted by :
  • Date : 09:41
  • Labels :






  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment