Series Printing



Q1)Write a program to display the series 0,0,2,1,4,2,6,3,8,4,…………
Link: For the above problem

Q2) Find the no. for a user given position for this series 0,0,2,1,4,2,6,3,8,4.....
       For example:(1) At position 4 you should get no. 1
                             (2) At position 9 you should get no. 8

Link: For the above problem

Q3)Write a program to display the sequence 1,2,2,4,8,32,256.....
Link: For the above problem

Q4)Write a program to display the Fibonnaci series 0,1,1,2,3,5,8,13,21.....
Link: For the above problem

Q5)Write a program to display the sequence 1,4,9,16,25,36,49......

Comments

Popular posts from this blog

WHY PROGRAMMING?

Series code 2

Pattern Printing coding 7