Question

HELP IN JAVA: WHILE LOOP: Write a program that asks the user to enter a number of seconds. This number should be less than or
0 0
Add a comment Improve this question Transcribed image text
Answer #1
import java.util.Scanner;

public class TimeInCrypton {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        System.out.print("Enter number of seconds(<32767): ");
        int seconds = in.nextInt();
        while (seconds < 0 || seconds >= 32768) {
            System.out.print("Invalid. Enter number of seconds(<32767): ");
            seconds = in.nextInt();
        }
        int s = seconds;
        int hours = seconds / (64*32); seconds %= (64*32);
        int minutes = seconds / 64;
        seconds = seconds % 64;

        System.out.println(s + " seconds is " + hours + " hours, " + minutes + " minutes and " + seconds + " seconds");
    }
}
Add a comment
Know the answer?
Add Answer to:
HELP IN JAVA: WHILE LOOP: Write a program that asks the user to enter a number...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT