English, asked by tanjilhussain979, 9 hours ago

Khalil Tcs5: Rewrite [12:02 11 /2] the sentence with pronouns.
1.The english books are very interesting.​

Answers

Answered by mandalsunando
0

Answer:

import java.util.Scanner;

public class Table

{

   public static void main(String[] args)

   {

       Scanner console = new Scanner(System.in);

       int num;

       

       System.out.print("Enter any positive integer: ");

       num = console.nextInt();

               

       System.out.println("Multiplication Table of " + num);

       

       for(int i=1; i<=10; i++)

       {

           System.out.println(num +" x " + i + " = " + (num*i) );

       }

   }

}

Explanation:

Similar questions