Question: Write a static method named inputStats that accepts as a parameter a Scanner containing a series of tokens (text separated by whitespace). It should print

Write a static method named inputStats that accepts as a parameter a Scanner containing a series of tokens (text separated by whitespace). It should print out the sum of all the tokens that are legal integers, the sum of all the tokens that are legal doubles but not integers, and the total number of tokens of any kind. It should not return any value. For example, if a Scanner called data contains the following tokens: 3 3.25 10 squid 10.x 6.0 Then the call of inputStats (data); should print the following output: integers: 13 real numbers: 9.25 total tokens: 6 If the Scanner has no tokens, the method should print: integers: 0 real numbers: 0.0 total tokens: 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
