2 4 8 16 32 64 Print this series using loop repetitive Control Structure pseudo code algorithm


Write a pseudo code, Features and represent the information on a flow chart that Display the following series using repetitive Control Structure.
2 4 8 16 32 64……
n=2;
count=1
DO WHILE count <=MAX
      Display n
      n=n*2
     count=count+1
LOOP