subject

Suppose that a Scanner object contains a bunch of tokens all on a single line separated by spaces. For example: 100.5 65 pizza 100 45.75 70 5.8 5
Also suppose that you have two integers n and m that are both positive. For example:
n = 5 and m = 10
Write a static method: public static double partialSum(Scanner s, int n, int m) that takes a Scanner and two integers n and m as arguments and returns the sum of the integers read by the Scanner that are divisible by n and not divisible by m.
In the above example, the integers divisible by 5 and not divisible by 10 are 65 and 5, so the result would be 70.
If the Scanner is empty, or no tokens are valid integers, the result should be 0. You can assume the Scanner is not null.
It is probably easiest to test your method by creating a Scanner with a String instead of System. in. Please see the starter code for an example of how to do this.
Tests to include in your main method:
+Test the above example with "100.5 65 pizza 100 45.75 70 5.8 5" as the tokens and n = 5 and m = 10. The result should be 70.
+Include tests that verify that invalid tokens (doubles and words) are filtered out and do not cause InputMismatchExceptions.
+Include a test where the Scanner is empty. The result should be zero.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 13:00
Which option should u select to ignore all tracked changes in a document
Answers: 1
question
Computers and Technology, 22.06.2019 15:20
The north and south regions had very diferent economies in the 1800s.
Answers: 1
question
Computers and Technology, 23.06.2019 18:00
Which is a possible benefit of having a good credit history? having a checking account low interest rate on a car loan high interest rate on a credit card offer bankruptcy
Answers: 1
question
Computers and Technology, 25.06.2019 03:30
All nate specialties are offered at two levels, a. journeyman and master. b. installation and service. c. apprentice and journeyman. d. heating and air conditioning.
Answers: 1
You know the right answer?
Suppose that a Scanner object contains a bunch of tokens all on a single line separated by spaces. F...
Questions
question
Mathematics, 25.11.2020 04:40
question
English, 25.11.2020 04:50
question
English, 25.11.2020 04:50
question
Mathematics, 25.11.2020 04:50
question
Advanced Placement (AP), 25.11.2020 04:50
question
Arts, 25.11.2020 04:50
question
History, 25.11.2020 04:50
Questions on the website: 13722363