为了学校,我必须做一项作业,我现在忙了 3 周,但还没有走远。我们需要制作一个必须是圆形的时钟,并且需要点亮秒分和小时的颜色。因此,如果是凌晨 4 点 25 分,这些数字需要亮起。
这就是我现在所拥有的:
#include <stdio.h>
#include <time.h>
#include <conio.h>
#include <unistd.h>
#include <stdlib.h>
#include <windows.h>
int csecs (int cseconds );
void main (int sec, int min){
printf("Hallo! Veel plezier met het bekijken van de tijd!");
getch();
while (sec)
{
time_t cseconds;
cseconds = time (NULL);
printf ("De Tijd: ");
printf ("%d:", csecs( cseconds )/60/60%24+1);
printf ("%d:", csecs( cseconds )/60%60 );
printf ("%d", csecs( cseconds )%60 );
Sleep(1000);
system("cls");
}
}
int csecs (int cseconds)
{
return cseconds;
}
谁能告诉我我怎么可能做到这一点?我不是要你做我的功课。我只是真的需要一些帮助。