Question: Write a program in Java to sum up positive odd integers. How many integers is not known. Use a while-loop and terminate the loop if


Write a program in Java to sum up positive odd integers. How many integers is not known. Use a while-loop and terminate the loop if 0 or a negative value is entered. Write a program in Java to print this box: \#\#\#\#\#\#\#\# \#\#\#\#\#\#\#\# \#\#\#\#\#\#\#\# You should have a void method called printBox() that will accept the how many rows, how many columns and character to be used. Hence, the above output will be called from main in line \#17 below with values for the number of rows, number of columns and character to be used are set from line #14 to #16. And here is the output If you changed the call from the main as shown below 1 14151617introws=5;intcols=12;charch=;printBox(rows,cols,ch); Here is the output Hint: You will need to have a nested-loop. Best to use a for-loop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
