Question
CSSSKL 142 Lab 3 (Part 2) In this exercise you will write a method that takes a Scanner object from main and uses it to
CSSSKL 142 Lab 3 (Part 2)
In this exercise you will write a method that takes a "Scanner" object from main and uses it to ask the user to input tow integers using the keyboard, sums their square roots, and prints a statement based on what bucket the result is in. The possible buckets are "Less than 10", "Between 10 and 20", "Between 20 and 30", and "Great than 30." Negative integers should be rejected with the appropriate message printed to the user. The method is named "sqrtSumBucketer", and it should work as follows:
If user enters 23 16, then:
sqrtSumBucketer ( input ); //Should print " Less than 10"
If user enters 2 999, then
sqrtSumBucketer ( input ); //Should print " Greater than 30."
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