Question

In: Computer Science

Write a program named Intervals.java that will take two time intervals (a starting and ending time)...

Write a program named Intervals.java that will take two time intervals (a starting and ending time) and compare them. The program first prompts the user for an earlier and later interval. Each interval consists of two numbers in 24-hour format (for example, 1507 for 3:07 p.m.):

Enter earlier start and end time as two 24-hour format times: 0700 1045
Enter later start and end time as two 24-hour format times: 0815 1130

You may presume that the user will enter the intervals with the start time and end time in the correct order.

The program will then calculate how many minutes are in each interval, which one is longer, and whether the intervals overlap (does the later interval start before the first one is finished):

The earlier interval is 225 minutes long.
The later interval is 195 minutes long.
The earlier interval is longer.
These intervals overlap.

Here is output from another run of the program:

Enter earlier start and end time as two 24-hour format times: 1340 1445
Enter later start and end time as two 24-hour format times: 1500 1710
The earlier interval is 65 minutes long.
The later interval is 130 minutes long.
The later interval is longer.
These intervals do not overlap.

If the intervals are of equal length, your output should say they are equally long. If the later interval starts at the same time that the earlier interval ends, they do not overlap.

Plan this program before you start writing it! No single part of this program is tremendously difficult, but there are many parts.

Hint: Convert the times to number of minutes after midnight. This will make your calculations much easier. For example, 0507 is 5 hours and 7 minutes past midnight, or 307 minutes past midnight. You will want to use / and % with 100 to split up the time into the hours and minutes part, but use 60 when calculating total minutes!

Extra challenge: Give the correct answer even if the user enters the beginning and end times for an interval in the wrong order, or if they enter the later interval first and the earlier interval second.

Solutions

Expert Solution

Thanks for the question.


Below is the code you will be needing Let me know if you have any doubts or if you need anything to change.


Thank You !!


===========================================================================

import java.util.Scanner;

public class Intervals {


    public static void main(String[] args) {


        String firstStartTime, firstEndTime;
        String secondStartTime, secondEndTime;
        Scanner scanner = new Scanner(System.in);

        System.out.print("Enter earlier start and end time as two 24-hour format times: ");
        firstStartTime = scanner.next();
        firstEndTime = scanner.next();

        System.out.print("Enter later start and end time as two 24-hour format times: ");
        secondStartTime = scanner.next();
        secondEndTime = scanner.next();

        int earlierDuration = duration(firstStartTime, firstEndTime);
        int laterDuration = duration(secondStartTime, secondEndTime);


        System.out.println("The earlier interval is " + earlierDuration + " minutes long.");
        System.out.println("The later interval is " + laterDuration + " minutes long.");

        if (earlierDuration > laterDuration) {
            System.out.println("The earlier interval is longer.");
        } else if (earlierDuration < laterDuration) {
            System.out.println("The later interval is longer.");
        }

        if (isOverlapping(firstStartTime, firstEndTime, secondStartTime, secondEndTime)) {
            System.out.println("These interval overlap.");
        } else {
            System.out.println("These interval do not overlap.");
        }

    }

    private static int duration(String start, String end) {

        return absoluteTime(end) - absoluteTime(start);
    }

    private static int absoluteTime(String time) {

        String hours = time.substring(0, 2);
        String minutes = time.substring(2);

        // calcuate time from midnight
        int totalMinutes = Integer.parseInt(hours) * 60 + Integer.parseInt(minutes);
        return totalMinutes;

    }

    private static boolean isOverlapping(String earlierStart, String earlierEnd, String laterStart, String laterEnd) {

        int earlierAbsStart = absoluteTime(earlierStart);
        int earlierAbsEnd = absoluteTime(earlierEnd);
        int laterAbsStart = absoluteTime(laterStart);
        int laterAbsEnd = absoluteTime(laterEnd);

        if (earlierAbsStart < laterAbsStart && laterAbsStart < earlierAbsEnd) return true;
        else if (earlierAbsStart < laterAbsEnd && laterAbsEnd < earlierAbsEnd) return true;

        else if (laterAbsStart < earlierAbsStart && earlierAbsStart < laterAbsEnd) return true;
        else if (laterAbsStart < earlierAbsEnd && earlierAbsEnd < laterAbsEnd) return true;
        else return false;
    }


}


Related Solutions

write a python program that include a function named activity_selection() and take in two arguments, first...
write a python program that include a function named activity_selection() and take in two arguments, first one would be the number of tasks and the second argument would be a list of activities. Each activity would have an activity number, start time and finish time. Example activity_selection input and output: activity_selection (11, [[1, 1, 4 ], [2, 3, 5], [3, 0, 6], [4, 5, 7], [5, 3, 9], [6, 5, 9],[7, 6, 10], [ 8, 8, 11], [ 9, 8,...
Take the exchange rates of two different nations at two different time intervals and determine the...
Take the exchange rates of two different nations at two different time intervals and determine the DER and IER with reference to one country. Discuss the impact on import due to changes in the exchange rate upon any one nation. Also discuss the impact on export due to change in the exchange rate upon the same nation. Discuss the strength or weakness of one currency over the period of time with reference to other currency.
Write a program that contains the following Write a function copies with two int parameters, named...
Write a program that contains the following Write a function copies with two int parameters, named n and x. It should dynamically allocate a new array of size n.  The function should then copy the value in x to every position in the array. The function should return a pointer to the new array. In the main function, call the copies function from part 1. with size 5 and value -1.  Output the resulting array to the screen, and deallocate the array....
MIPS Program I'm trying to write a program that will take in two numbers from the...
MIPS Program I'm trying to write a program that will take in two numbers from the user and output the sum at the end. However, I keep getting very wrong answers. For example, I add 2 and 2 and get 268501000. Help would be appreciated. .data #starts data use userIn1:    .word 4 #sets aside space for input    userIn2:    .word 4 #sets aside space for input total:    .word 4 #sets space aside for input    request:   ...
Write a program in Java that will take as input two sets A and B, and...
Write a program in Java that will take as input two sets A and B, and returns a list of all functions from A to B.
Write a JavaScript program with a function named fives that reads two numbers from two text...
Write a JavaScript program with a function named fives that reads two numbers from two text fields and then outputs to a div "True" if both of the numbers are greater than 5 or if their sum is greater than 20. Otherwise your function should output "False" to the div. If you wish, you may use the following HTML code to begin your program.
Write a Python program that reads in two times, an earlier time and a later time,...
Write a Python program that reads in two times, an earlier time and a later time, and prints the difference between the two times in minutes as well as in hours/minutes. The format of the time is HH:MMAM or H:MMAM or HH:MMPM or H:MMPM. Also the AM or PM may be in lower case. A sample run of the program is shown below: $ python3 Time.py Enter Earlier Time: 9:36aM Enter Later Time: 6:22PM Number of minutes between 9:36aM and...
Write a program that takes two command line arguments at the time the program is executed....
Write a program that takes two command line arguments at the time the program is executed. You may assume the user enters only decimal numeric characters. The input must be fully qualified, and the user should be notified of any value out of range for a 23-bit unsigned integer. The first argument is to be considered a data field. This data field is to be is operated upon by a mask defined by the second argument. The program should display...
Write a program that takes two command line arguments at the time the program is executed....
Write a program that takes two command line arguments at the time the program is executed. Both arguments are to be numerical values restricted to 22-bit unsigned integers. The input must be fully qualified, and the user should be notified of any errors with the input provided by the user. The first argument is to be considered a data field. This data field is to be is operated upon by a mask defined by the second argument. The program should...
write a program named Combinations.java that gets user input for two integers n and k, then...
write a program named Combinations.java that gets user input for two integers n and k, then computes and displays the value of n choose k using the efficient method of equation. you may assume that the user's input makes sense (i.e, n and k are non negative, and n is at least k). your code should work for any reasonably small non- negative values of n and k, including zero.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT