Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Java, array, method: Question1: using method write 3 methods besides for main: * 1. read in a temperature in degrees celcius and return that number
Java, array, method:
Question1: using method
write 3 methods besides for main: * 1. read in a temperature in degrees celcius and return that number * 2. accept a temperature in degrees celcius, convert it to * faranheit and return the faranheit number. * 3. isHot that will return true or false based upon a temperature * main should call all three methods. main should print a sentence * saying for example: * # in degrees celcius is # in faranheit and it IS hot. * No printing is done in the methods. * E.C. main calls the methods in a loop.
Question2: using method & array
Declare an array of ints. Read in values as long as user wants * to enter values and store the values in the array. (hint: in order to do this, you will need a counter that will both count and be used as the index into the array. * Call a method to print all the values in the array. Note: the method should only print the number of elements that you read in.
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