Modify test score app math operator

Assignment Help Mathematics
Reference no: EM13762778

Modify Test Score App Math as described below.

1. Use the += operator to increase the scoreCount and scoreTotal variables. Then test this to makes sure it works.

2. As the user enters test scores, use the methods of the Math class to keep track of the minimum and maximum scores. When the user enter 999 to end the program, display these scores at the end of the other output data. Now, test these changes to make sure that they work.

3. Change the variable that you use to total the scores from a double to an int data type. Then use casting to cast the score count and score total to doubles as you calculate the average score and save that average as a double. Now, test that change.

4. Use the NumberFormat class to round the average score to one decimal place before displaying it at the end of the program. Then, test this change. Note that the rounding method that's used doesn't matter in a program like this.

// display operational messages

System.out.println("Please enter test scores that range from 0 to 100.");

System.out.println("To end the program enter 999.");

System.out.println(); // print a blank line

// initialize variables and create a Scanner object

double scoreTotal = 0;

int scoreCount = 0;

int testScore = 0;

Scanner sc = new Scanner(System.in);

// get a series of test scores from the user

while (testScore != 999)

{

// get the input from the user

System.out.print("Enter score: ");

testScore = sc.nextInt();

// accumulate score count and score total

if (testScore <= 100)

{

scoreCount = scoreCount + 1;

scoreTotal = scoreTotal + testScore;

}

else if (testScore != 999)

System.out.println("Invalid entry, not counted");

}

// display the score count, score total, and average score

double averageScore = scoreTotal / scoreCount;

String message = "\n" +

"Score count: " + scoreCount + "\n"

+ "Score total: " + scoreTotal + "\n"

+ "Average score: " + averageScore + "\n";

System.out.println(message);

Reference no: EM13762778

Questions Cloud

Financial information for ford and gm : Using the financial information for Ford and GM, answer the following questions.
Ritz furniture has a contribution margin ratio : Ritz Furniture has a contribution margin ratio of 0.17. If fixed costs are $171,500 how many dollars of revenue must the company generate in order to reach the break-even point?
Attend college full-time at a cost : Susan is trying to decide whether or not to attend college during the next 12-week session.
How does your protagonist relate to society : How does your protagonist relate to society? In what ways is your literary work or film Greek? What epic qualities are evident in your work?
Modify test score app math operator : Use the += operator to increase the scoreCount and scoreTotal variables. Then test this to makes sure it works.
Budgeted sales-incremental revenues : Carry-ALL plans to sell 1,300 carriers next year and has budgeted sales of $46,000 and profits of $22,000. Variable costs are projected to be $20 per unit. Michael Co. offers to pay $24,500 to buy 570 units from Carry-ALL.
Highest risk arrangement with a payer : From a hospital's perspective, what is most likely to be the highest risk arrangement with a payer?
Problems based on wastage : Discuss the economic impacts of implementing your plan versus the financial impacts of making no change in our current use.
Impact of changes in purchasing power : Which method(s) of financial reporting does (do) not recognize the impact of changes in purchasing power?

Reviews

Write a Review

Mathematics Questions & Answers

  Questions on ferris wheel

Prepare a Flexible Budget Gator Divers is a company that provides diving services such as underwater ship repairs to clients in the Tampa Bay area.

  Logistic map

This assignment has two question related to maths. Questions are related to bifurcation cascade and logistic map.

  Finding the probability of cards

This assignment has questions related to probabiltiy.

  Systems of ode

Find all the xed points, and study their stability and Draw the phase portrait of the system, as well as the graphs of the solutions in all relevant cases.

  Derive the boolean expression

Derive the Boolean Expression and construct the switching circuit for the truth table stated

  System of equations

Evaluate which equations are under-identified, just-identified, and over-identified.

  Linear programming problem

Linear programming problem consisting of only two constraints with one objective function.

  Find the natural domain

Find the natural domain of the given functions.

  Introduction to numerical methods

Compute the coecients of the polynomials using the term recurrence relation.

  Chart of the topological manifold

De?nition of smoothness of functions on a smooth manifold is chart independent and hence geometric.

  Mathematics in computing

Questions related on mathematics in computing.

  Complex problems

Complex problems

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd