Please do not give solution in image format thanku Method: addOneMinute() Description: This method adds one minute to the current time. Method Signature: void addOneMinute() Parameters: This method does not take any parameters. Return Value: This method does not return anything. Instructions: Check the value of getMinute(). If it is between 0 and 58 inclusive, add 1 to it and call setMinute() with the new value. If getMinute() is 59, set minutes to 0 by calling setMinute(0), and then call addOneHour() to add one hour to the time. Note: You may change things around in your program, but for now please make this method work with the existing method signatures. ________________________________________________________________________________________________--- /** * Adds one minute */ void addOneMinute() { /**assume you have working getMinute(), setMinute(m), and addOneHour() * Feel free to change these in your program, but for now please get things to work with * these function signatures. * if getMinute() is between 0 and 58 inclusive, add 1 and setMinute() to the new value * if getMinute() is 59 the minutes must be set to 0 and you must call addOneHour() * test will set hours and minutes to 0, then addOneMinute 60 times */ //TODO: Your code here // nothing to return, just setMinute to the appropriate value and use addOneHour if needed }

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter11: More Object-oriented Programming Concepts
Section: Chapter Questions
Problem 4PE
icon
Related questions
Question

Please do not give solution in image format thanku

Method: addOneMinute()

Description: This method adds one minute to the current time.

Method Signature: void addOneMinute()

Parameters: This method does not take any parameters.

Return Value: This method does not return anything.

Instructions:

Check the value of getMinute(). If it is between 0 and 58 inclusive, add 1 to it and call setMinute() with the new value.

If getMinute() is 59, set minutes to 0 by calling setMinute(0), and then call addOneHour() to add one hour to the time.

Note: You may change things around in your program, but for now please make this method work with the existing method signatures.

________________________________________________________________________________________________---

/**
* Adds one minute
*/
void addOneMinute() {
/**assume you have working getMinute(), setMinute(m), and addOneHour()
* Feel free to change these in your program, but for now please get things to work with
* these function signatures.
* if getMinute() is between 0 and 58 inclusive, add 1 and setMinute() to the new value
* if getMinute() is 59 the minutes must be set to 0 and you must call addOneHour()
* test will set hours and minutes to 0, then addOneMinute 60 times
*/
//TODO: Your code here

// nothing to return, just setMinute to the appropriate value and use addOneHour if needed
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 2 images

Blurred answer
Knowledge Booster
Database connectivity
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage