HackerRank 30 days of coding – Day5 ( Loop)

Task : Given an integer, n, print its first 10 multiples. Each multiple n*i (where 1<=i<=10) should be printed on a new line in the form: n x i = result.   Sample Input 2 Sample Output 2 x 1 = 2 2 x 2 = 4 2 x 3 = 6 2 x 4… Read More HackerRank 30 days of coding – Day5 ( Loop)