写出电子日历代码
时间: 2023-07-03 22:13:00 浏览: 151
以下是一个简单的电子日历代码示例,使用 Python 编写:
```python
import calendar
# 获取当前年月
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 输出日历
print(calendar.month(year, month))
```
运行代码后,程序会要求用户输入年份和月份,然后输出对应的日历。你可以根据需要对代码进行修改和扩展,以实现更多功能。
相关问题
用C语言写出电子日历代码
以下是使用 C 语言编写的简单电子日历代码示例:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
// 获取当前时间
time_t t = time(NULL);
struct tm *now = localtime(&t);
int year = now->tm_year + 1900; // 年份需要加上 1900
int month = now->tm_mon + 1; // 月份从 0 开始,需要加上 1
// 输出日历
printf(" %d年%d月\n", year, month);
printf("日 一 二 三 四 五 六\n");
struct tm date = {0, 0, 0, 1, month - 1, year - 1900}; // 初始日期为本月第一天
int weekday = mktime(&date) / 86400 % 7; // 计算本月第一天是星期几
for (int i = 0; i < weekday; i++) {
printf(" ");
}
for (int i = 1; i <= 31; i++) { // 一个月最多 31 天
date.tm_mday = i;
if (mktime(&date) / 86400 % 7 == 0 && i != 1) { // 如果是周日且不是本月第一天,则换行
printf("\n");
}
if (i > 9) {
printf("%d", i);
} else {
printf(" %d", i);
}
printf(" ");
if (mktime(&date) / 86400 % 7 == 6) { // 如果是周六,则换行
printf("\n");
}
}
return 0;
}
```
运行代码后,程序会自动获取当前年份和月份,并输出对应的日历。你可以根据需要对代码进行修改和扩展,以实现更多功能。
阅读全文