Write a Java program (name it SandClock) that uses nested loops to print out the following shape (sand clock).
*
***
*****
*******
*********
public class SandClock1 {
public static void main(String[] args) {
int n = 9;
int spaces = n/2;
for (int i=0; i<n; i+=2) {
for (int j=0; j<spaces; j++) {
System.out.print(" ");
}
spaces = spaces - 1;
for (int j=0; j<=i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}



Write a Java program (name it SandClock) that uses nested loops to print out the following...
Write a java program that will print out the following patters. Use nested for loop.101101010110101
Design (pseudocode)(name it Pattern) that uses nested loops to print out the following pattern. Document your code properly. 1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
in JAVA write a program that produces the following output using nested for loops: +------+ | ^^ | | ^ ^ | |^ ^| | ^^ | | ^ ^ | |^ ^| +------+ | vv | | v v | |v v| | vv | | v v | |v v| +------+
Write a Java program that uses nested for loops to print a
multiplication table as shown below.
Make sure to include the table headings and separators as
shown.
The values in the body of the table should be computed using
the values in the heading
e.g. row 1 column 3 is 1 times 3.
* | 1 2 3 4 5 6 7 8 9 4 | 1| 1 2 3 456 7 8 9 2 | 2 4 6.8...
Java: makes sure program compiles before posting. Write a program that uses nested for loops to create the pattern of Xs and Os, in which on every line each letter is displayed one additional space to the right. Use a toggle variable ( a boolean flag) to alternate between X and O to produce output as shown in the sample run below: Enter the number of lines: 7 X O X O X O X
***** JAVA ONLY ***** Write a program that uses nested loops to collect data and calculate the average rainfall over a period of years. Frist the program should ask for the number of years. The outer loop will iterate once for each year. The inner loop will iterate 12 times, once for each month. Each iteration of the inner loop will ask the user for the inches of rainfall for that month. After all iterations, the program should display the...
LABORATORY EXERCISES: Using nested for loops, write a java program to print the pattern as shown in the sample output. The program does the following: It prompts the user to enter an integer between 1 and 10. It outputs the pattern shown in the sample output based on the user input. Sample output: Enter an integer from 1 to 10: 8 The pattern is: x x x x x x x x x x x x x x x x...
PLEASE DO THIS IN C #.Design and implement a program (name it Shape) that uses nested for loops to printout the shape shown below. Document your code. * *** ***** ******* ********* *********** ************* ***************
Java Write a program in Java using “Nested For Loop” to print following pattern. AAA AAA C566 AAA C566 AAA AAA C566 AAA AAA AAA C566 AAA AAA AAA
MATLAB Write segment of code using nested for loops to print out the following pattern. Your segments of code should prompt the user for a positive integer, n, and print the following star pattern depending on n. An equilateral triangle. Pictured below is case n = 6. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *...