Wednesday, October 23, 2019

Multiplication Table in Java

I wrote a simple multiplication table program that uses nested for loop statement in Java as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output

Program Listing

 multiplication_table.java

// Multiplication Table in Java
// Author : Jake Rodriguez Pomperada
// October 23, 2019   Wednesday 

package multiplication_table_demo;

public class multiplication_table {

public static void main(String[] args) {
   System.out.println("\n");
   System.out.println("\t\tMULTIPLICATION TABLE");
   System.out.println("\n");
    for (int a=1; a<=12; a++) {
    for (int b=1; b<=12; b++) {
    System.out.printf("%4d",(a*b));
    }
    System.out.println();
    }
}

}

No comments:

Post a Comment