Question

In: Computer Science

Java- Fill in the blanks Print numbers 0, 1, 2, ..., userNum as shown, with each...

Java- Fill in the blanks

Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For each printed line, print the leading spaces, then the number, and then a newline. Hint: Use i and j as loop variables (initialize i and j explicitly). Note: Avoid any other spaces like spaces after the printed number. Ex: userNum = 3 prints:

0
 1
  2
   3

--------------------------------------------

public class NestedLoop {
public static void main (String [] args) {
int userNum = 0;
int i = 0;
int j = 0;

/* Your solution goes here */

return;
}
}

----------------------------------------------------

Given numRows and numCols, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1A or 3E. Print a space after each seat, including after the last. Use separate print statements to print the row and column. Ex: numRows = 2 and numCols = 3 prints:

1A 1B 1C 2A 2B 2C 

-----------------------------------------------------------

public class NestedLoops {
public static void main (String [] args) {
int numRows = 2;
int numCols = 3;

// Note: You'll need to declare more variables

/* Your solution goes here */

System.out.println("");

return;
}
}

Solutions

Expert Solution

1.

Program Screenshot:

Sample Output:

Code to Copy:

// Declare a class.

public class NestedLoop

{

// Star the main method.

public static void main(String[] args)

{

// Set the value of userNum 3.

int userNum = 3;

int i = 0;

int j = 0;

// Start the for loop

for (i = 0; i <= userNum; i++)

{

// start the for loop

for (j = 0; j < i; j++)

{

// Display statement on console.

System.out.print(" ");

}

// display value.

System.out.println(i);

}

return;

}

}

2.

Program Screenshot:

Sample Output:

Code to Copy:

// declare a class.

public class NestedLoops

{

// start the main method.

public static void main(String[] args)

{

// declare variables.

int numRows = 2;

int numCols = 3;

int i, j;

char character = 'A';

// Start the for loop

for (i = 0; i < numRows; i++)

{

// start the for loop.

for (j = 0; j < numCols; j++)

{

// Display the numeric value on console.

System.out.print(i + 1);

// display character on console.

System.out.print((char) (character + j));

// Print space

System.out.print(" ");

}

}

System.out.println("");

return;

}

}


Related Solutions

FOR JAVA Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by...
FOR JAVA Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For each printed line, print the leading spaces, then the number, and then a newline. Hint: Use i and j as loop variables (initialize i and j explicitly). Note: Avoid any other spaces like spaces after the printed number. Ex: userNum = 3 prints: 0 1 2 3
Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number...
Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For each printed line, print the leading spaces, then the number, and then a newline. Hint: Use i and j as loop variables (initialize i and j explicitly). Note: Avoid any other spaces like spaces after the printed number. Ex: userNum = 3 prints: 0 1 2 3
Fill in the blanks of this code to print out the numbers 1 through 7. number...
Fill in the blanks of this code to print out the numbers 1 through 7. number = 1 while number ___ 7:     print(number, end=" ")     ___
Fill in the blanks in the problem with the 1 or 2 digit numbers from above:...
Fill in the blanks in the problem with the 1 or 2 digit numbers from above: A mass of ______ kg is attached to a spring, and stretches it by _____ cm. The mass is then pulled to a distance of ______ ?? below the spring’s equilibrium length, and given a downward velocity of ________ ?/? . Note: you may assume normal Earth gravity (g=9.8 m/s2 ) and that the spring is undamped. 1) What is the spring constant? 2)a)...
Fill in the blanks with the following numbers, not the words, for this and all the...
Fill in the blanks with the following numbers, not the words, for this and all the questions that follow. Jot them down so you won't have to keep scrolling up to the top to see what they are: Demand = 1 Supply = 2 Right = 3 Left = 4 Up = 5 Down = 6 QUESTION 6 Suppose the dollar were to strengthen in international currency markets. That is, the price of the dollar, in terms of other national...
Fill in the blanks with the following numbers, not the words, for this and all the...
Fill in the blanks with the following numbers, not the words, for this and all the questions that follow. Jot them down so you won't have to keep scrolling up to the top to see what they are: Demand = 1 Supply = 2 Right = 3 Left = 4 Up = 5 Down = 6 QUESTION 4 Consider the case where an important technological innovation (e.g., the personal computer, iPhone, Internet, etc.) made labor more productive. This would cause...
Fill in the blanks with numbers to complete the following equivalences 1._ km=_m 2. _um=_m
Fill in the blanks with numbers to complete the following equivalences 1._ km=_m 2. _um=_m
2. For each of the following sentences, fill in the blanks with the best word or...
2. For each of the following sentences, fill in the blanks with the best word or phrase in the list below. Not all words or phrases will be used; use each word or phrase only once During transcription in __________________ cells, transcriptional regulators that bind to DNA thousands of nucleotides away from a gene’s promoter can affect a gene’s transcription. The __________________ is a complex of proteins that links distantly bound transcription regulators with the proteins bound closer to the...
Fill in the blanks in each of the following statements
Fill in the blanks in each of the following statementsa) --------- allows you to build JavaFx GUIS using drag and drop techniques.b) The elements in the scene graph are called --------------c) A(n) ----------- file contains the description of a JavaFX GUI.d) The method ---------------- is called by FMXLLoader before the GUI is displayed
For each of the questions that follow, fill in the blanks. Blanks are denoted by --[N.]--,...
For each of the questions that follow, fill in the blanks. Blanks are denoted by --[N.]--, where N is an upper-case Roman numeral. (a) Complete the following code so that the loop executes 10 times (3) int j = −−[I.]−−; int i=1; while ( −−[II.]−− ) { i = i + −−[III.]−−; } (b) Complete the following function which sorts C-strings into alphabetic order. (4) Page 4 void bubbleSort( char names[ ][COLS] , int count) { int pass , index...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT