Create a Java project out of both problems 1. and 2. 1. Create a new Java project/class called Examine1. Prompt user as to how many numbers they would like to enter. Use a cumulative sum loop to read in and sum that many numbers. Once all numbers entered, program should print out the sum total and average of those numbers entered by the user. Use the printf command to format. Paste code.
Create a Java project out of both problems 1. and 2.
1. Create a new Java project/class called Examine1.
Prompt user as to how many numbers they would like to enter.
Use a cumulative sum loop to read in and sum that many numbers.
Once all numbers entered,
Paste code.
2.
Create a new program called Examine2.
Modify Examine1 code to use an if…if/else statement.
Check each value entered by the user to determine if the user entered a negative number. If so, program should count each negative number entered.
Once user has entered all numbers, program should print the total negative numbers entered by user.
Your program should print the average using the printf command and the number of negative numbers entered.
Note: You may include or exclude the negative numbers with your calculation.
Paste code.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 4 images