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#
- Host: GitHub
- URL: https://github.com/mobink980/time-seperator
- Owner: Mobink980
- License: mit
- Created: 2019-12-05T21:42:07.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-05T22:09:34.000Z (over 5 years ago)
- Last Synced: 2025-01-14T07:34:28.283Z (5 months ago)
- Language: C#
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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