1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课内】10.函数1/6-1 输出星期名.c

8 lines
179 B
C
Raw Normal View History

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