Get premium membership and access questions with answers, video lessons as well as revision papers.

Complete the following java program, adding assignments to split totalseconds into two variables : minutes and seconds Int totalSeconds = 307;

      

Complete the following java program, adding assignments to split totalseconds into two variables : minutes and seconds
Int totalSeconds = 307;

  

Answers


Davis
Int totalSeconds = 307;
int seconds, minutes;
minutes = totalSeconds /60;
seconds = totalSeconds %60;

Githiari answered the question on January 26, 2018 at 12:30


Next: State the values that end up in a, b, c, and d, after these calculations are performed using java programming language. Int a, b, c, d; a...
Previous: Message dialogs can display a string.What do the following message dialogs display? JOptionPane.showMessageDialog(null, ‘’5’’ +...

View More Computer Studies Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions