Are you Searching  Java Program to print table of any number using a do-while loop? You are on the right  webstite. we give you a big collection java  Programing We are provide How to print a table of any number in java  and easy to understand . 

Table : 10 20 30 40 50 60 70 80 90 10 
Java

Example  : How to print a table of any number in java 


import java.util.Scanner;

class Main {
    public static void main(String args[]) {
        int number;
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter  Number:");
        number = sc.nextInt();

        int x = 1;

        do {
            System.out.println(x * number);
            x++;
        } while (x <= 10);

    }

}
Java

Output:

Enter Number : 10

10
20
30
40
50
60
70
80
90
100