Number Series


 

  1. A program to display the following series:


    1 2 3 4
    1 2 3
    1 2
    1
    4
    4 3
    4 3 2
    4 3 2 1

 

 

  1. A program to display the following series:

                                11,  22,  33,  44
    without including the header file <math.h>.

 

 

  1. A program to display the following series:

                                11,  22,  33,  44,  ......,  nn 
    where n is a number inputted by the user, do not include the header file math.h.

 

 

  1. A program to display the following series (i.e. Fibnocci series):

        0, 1, 1, 2, 3, 5, 8, 13, 21, ......., n
        where n is the limit of the series entered by the user.

 

 


Previous:
Series/Pattern List


Next:
Fraction Series