Question: Write JAVA pseudo code for the following program public class multiTable { public static void main(String[] args) { // input to set table size final

Write JAVA pseudo code for the following program

public class multiTable { public static void main(String[] args) { // input to set table size

final int tableNum = 10; // printing row System.out.print(" |"); for(int a = 1; a <= tableNum; a++) System.out.print(addSpace(a) + " "); System.out.println(); // printing separator System.out.print("---+"); for(int a = 1; a <= tableNum; a++) System.out.print("----"); System.out.println(); // printing main table for(int a = 1; a <= tableNum; a++) { System.out.print(addSpace(a) + "|"); for(int b = 1; b <= tableNum; b++) { System.out.print(addSpace(a * b) + " "); } System.out.println(); } } public static String addSpace(int y) { String str = new String(); if(y < 10) str = " " + y; else if(y < 100) str = " " + y; else str = "" + y; return str; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!