Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Explain the code! Also last time I uploaded they forgot to do both PA2a and PA2b Write a program that reads in five whole numbers

Explain the code! Also last time I uploaded they forgot to do both PA2a and PA2bimage text in transcribedimage text in transcribed

Write a program that reads in five whole numbers from the user. The program will calculate and output the following statistics about the five numbers: - The sum of all of the positive numbers (greater than zero). - The sum of all of the non-positive numbers (less than or equal to zero). - The sum of all five numbers. - The average of all of the positive numbers (greater than zero). - The average of all of the non-positive numbers (less than or equal to zero). - The average of all five numbers. Note that your program must accept the five numbers in any order and cannot ask the user to enter the positive and non-positive numbers separately. You should start by calculating the sum and average of all five numbers. Be sure you get that working correctly and then move on to doing the calculations for the positive and non-positive numbers. You will need many variables to keep track of all the values, sums, and averages. Don't forget that to calculate the average of a set of numbers you sum them all up then divide by the number of values you added together. For example, if your program gets 3 positive numbers and 2 nonpositive numbers, then you will divide the sum of the positive numbers by 3 to get the average and then divide the sum of the non-positive numbers by 2 to get the average of those numbers. This means you will have to keep track of how many positive numbers you read in and how many non-positive numbers you read in. Also note that you will need to write a lot of very similar looking pieces of code. Think about how to solve the problem for one or two numbers and then go from there to calculating the statistics for all five numbers. Finally, for sums, you should output just the number (e.g. 5 or 10) without any decimals (the sum of a set of integers is a sum!). However, for all averages, you must format the output to have two decimal places (even if they are both o), and round if necessary. The following represents a sample run of the program in which the user inputs on a single line "-11-2 2 3 " (without quotes). Note that the JUnit tests, and grading, will be very picky about exact spacing, spelling, capitalization, and number formatting. Enter five whole numbers: - 111 - 2 2 2 -3 The sum of the 2 positive numbers: 3 The sum of the 3 non-positive numbers: 6 The sum of the 5 numbers: 3 The average of the 2 positive numbers: 1.50 The average of the 3 non-positive numbers: 2.00 The average of the 5 numbers: 0.60 The sum of the 1 positive number: 2 The sum of the 4 non-positive numbers: 7 The sum of the 5 numbers: 5 The average of the 1 positive number: 2.00 The average of the 4 non-positive numbers: 1.75 The average of the 5 numbers: 1.00 Problem b (PA2b.java) Write a program that solves a quadratic equation of the form: ax2+bx+c=0 Specifically, the user will input the values (double) of a,b, and c. Your program must then calculate and output the roots of the equation, following these rules. First, calculate the discriminant: d=b24ac - If the discriminant is negative, the roots are imaginary. Print out a message informing the user of this and stop the program. For example: Enter a b c: 114 Roots: imaginary - If the discriminant is exactly zero, there is one root. Inform the user of this one root: b/2a. You must provide exactly two decimal places in your response, rounding as necessary. For example: Enter a b c: 144 Root: -2.00 - If the discriminant is positive, there are two roots. Inform the user of the value of the roots in increasing order of value (i.e. the smaller root first, followed by the larger). You must provide exactly two decimal places in your response, rounding as necessary. For example: Enter a b c: 165 Roots: 5.00,1.00 Note that the JUnit tests, and grading, will be very picky about exact spacing, spelling, capitalization, and number formatting

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

What is Constitution, Political System and Public Policy? In India

Answered: 1 week ago

Question

What is Environment and Ecology? Explain with examples

Answered: 1 week ago