1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00

8 lines
179 B
C
Raw Normal View History

2024-11-20 10:24:14 +08:00
const char WEEKDAY[7][4] = {"", "", "", "", "", "", ""};
void ShowDayWeek(int dow) {
if (dow < 0 || dow >= 7) return;
printf("%s", WEEKDAY[dow]);
}