Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started