Friday, February 1, 2019

URI 1173:: SOLUTION

URI Online Judge | 1173

Array fill I

Read a number and make a program which puts this number in the first position of an array N[10]. In each subsequent position, put the double of the previous position. For example, if the input number is 1, the array numbers ​​must be 1,2,4,8, and so on.

Input

The imput contains an integer number (V < 50).

Output

Print the stored number of each array position, in the form "N[i] = X", where i is the position of the array and x is the stored number at the position i. The first number for X is V.
Input SampleOutput Sample
1N[0] = 1
N[1] = 2
N[2] = 4
...



[WAIT]
     First of all, think yourself that you have tried enough for the problem. If you did not please read the program once. REMEMBER one thing, just believe in yourself.....YOU CAN.....YOU KNOW....


See the ANSWER here...
                                                                 

No comments:

Post a Comment