Question
I am making a military time program in Pelles C and I need some help to meet these requirements. (I posted this question multiple times
I am making a military time program in Pelles C and I need some help to meet these requirements. (I posted this question multiple times already and the solutions were wrong each time or incomplete)
Learning how to Output data all over the Console Window. Requirements: 1. Create a C program. 2. Display the clock on row 3, col 20. The clock format will be as follows: [ 0 : 00: 00 ] 3. Loop thru all of the seconds in the day, from 0:0:0 to 23:59:59. 4. Have the user hit any key to start the clock. 5. The clock will sleep after displaying each second. The initial sleep time will be 100ms. 6. By hitting keys, the user will be able to change the sleep time anywhere between min: 100ms to max: 2000ms. 7. In real time, detect, these keystrokes: a. + : This will increase the sleep time by 100ms. Do not go over the maximum limit. b. - : This will decrease the sleep time by 100ms. Do not go below the minimum limit. c.
IMPORTANT FOR SOLUTION:
- Do not include any other libraries besides the ones mentioned below, because Pelles C will not recognize certain file types (So please keep the solution code as simple as possible for these requirements).
- No break or exit statements.
- Use _kbhit to activate the different keystrokes (my keystrokes don't work right currently).
My code so far:
#include
int main() { int hour = 0, minute = 0, second = 0, sleep_time = 100; printf("Press any key to start "); getchar();
while (hour < 24) { while (minute < 60) { while (second < 60) { system("cls"); printf("\033[3;20H[%02d:%02d:%02d]", hour, minute, second); fflush(stdout);
int key = getchar(); if (key == '+') { sleep_time += 100; sleep_time = sleep_time > 2000 ? 2000 : sleep_time; } else if (key == '-') { sleep_time -= 100; sleep_time = sleep_time < 100 ? 100 : sleep_time; } else if (key == 27) { printf("\033[100;1H"); return 0; } else if (key == 0x3F) { hour = 0; minute = 0; second = 0; } else if (key != ' ') { printf("\033[1;50HInvalid Key: %c", key); }
Sleep(sleep_time); second++; } second = 0; minute++; } minute = 0; hour++; }
return 0; }
(A revised version of my code would be greatly appreciated, and preferably one without errors when I copy it into Pelles C)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started