c++ 打印日历 第四关
时间: 2023-12-22 10:29:08 浏览: 198
打印日历C++
5星 · 资源好评率100%
根据你提供的引用内容,以下是一个使用C++打印日历的示例代码:
```cpp
#include <iostream>
using namespace std;
int main() {
int year, month, startDay, numDays;
cout << "请输入年份:";
cin >> year;
cout << "请输入月份:";
cin >> month;
// 计算该月的第一天是星期几
startDay = (year - 1) * 365 + (year - 1) / 4 - (year - 1) / 100 + (year - 1) / 400;
for (int i = 1; i < month; i++) {
if (i == 2) {
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
startDay += 29;
} else {
startDay += 28;
}
} else if (i == 4 || i == 6 || i == 9 || i == 11) {
startDay += 30;
} else {
startDay += 31;
}
}
startDay = (startDay + 1) % 7;
// 计算该月的天数
if (month == 2) {
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
numDays = 29;
} else {
numDays = 28;
}
} else if (month == 4 || month == 6 || month == 9 || month == 11) {
numDays = 30;
} else {
numDays = 31;
}
// 打印日历
cout << "日\t一\t二\t三\t四\t五\t六" << endl;
for (int i = 0; i < startDay; i++) {
cout << "\t";
}
for (int i = 1; i <= numDays; i++) {
cout << i << "\t";
if ((startDay + i) % 7 == 0) {
cout << endl;
}
}
cout << endl;
return 0;
}
```
请注意,此代码假设用户输入的年份和月份是有效的,并且没有进行错误处理。你可以根据需要进行适当的修改和优化。
阅读全文