health

Technology

business posts

Powered by Blogger.

Total Pageviews

Name

your name

Email *

Your Email

Message *

your message

Followers

Translate

Pages

Pages

Program to Display Multiplication Table


class MultiplicationTable {

    public static void main(String args[]) {
        int num = Integer.parseInt(args[0]);
        System.out.println("*****MULTIPLICATION TABLE*****");
        for (int i = 1; i <= num; i++) {
            for (int j = 1; j <= num; j++) {
                System.out.print(" " + i * j + " ");
            }
            System.out.print("\n");
        }
    }
}

No comments: