Monday, 6 January 2020

HAY THANK FOR VISIT

<<<<<<<LET's START WITH ANOTHER QUESTION>>>>>>>>

Question:-PRINTING THE TABLE OF THE GIVEN NUMBER...


class Table
{
    void main(int n)
    {
        for(int i=1;i<=10;i++)
        {
            System.out.println(n*i);
        }
    }

}

INPUT----2
OUTPUT:----------------

No comments:

Post a Comment

HAY THAKYOU FOE VISIT

Program(python):-Find duplicates in an array (Geeks for geek problem)

QUESTION:- Given an array  a  of size  N  which contains elements from  0  to  N-1 , you need to find all the elements occurring more than o...