An open API service indexing awesome lists of open source software.

https://github.com/mobink980/time-seperator

A program that seperates two given times into several ranges written in C#
https://github.com/mobink980/time-seperator

Last synced: 3 months ago
JSON representation

A program that seperates two given times into several ranges written in C#

Awesome Lists containing this project

README

        

# Time-Seperator
A program that seperates two given times into several ranges written in C#

In this program, we take two time intervals from the user:

Start Time and End Time.

The program will seperate the user's input into the ranges defined in the ranges array and will return the result.

This is an example of how it works:

Ranges:

00:00 - 06:00

06:00 - 08:00

08:00 - 24:00



Enter the Start Time:

3:23

Enter the End Time:

2:50



03:23, 06:00

06:00, 08:00

08:00, 24:00

00:00, 02:50