8.19 lab: step countera pedometer treats walking 1 step as walking 2.5 feet. define a method named feettosteps that takes a double as a parameter, representing the number of feet walked, and returns an integer that represents the number of steps walked. then, write a main program that reads the number of feet walked as an input, calls method feettosteps() with the input as an argument, and outputs the number of steps.use floating-point arithmetic to perform the conversion.