编程序,输入年份和月份,输出本月有多少天
时间: 2023-08-15 12:08:15 浏览: 94
好的,您可以参考以下的 Python 代码实现:
```python
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
# 判断闰年
is_leap = (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0)
# 计算天数
if month in [1, 3, 5, 7, 8, 10, 12]:
days = 31
elif month in [4, 6, 9, 11]:
days = 30
else:
days = 29 if is_leap else 28
print(f"{year}年{month}月有{days}天")
```
这段代码会先让用户输入年份和月份,然后根据输入的年份和月份计算出本月的天数,并输出结果。其中,判断闰年的方法是先判断是否能被4整除但不能被100整除,或者能被400整除,如果是闰年则2月份有29天,否则有28天。根据每个月的天数,可以使用 if 语句进行判断并计算。
相关问题
Qt 编程序,输入年份和月份,输出本月有多少天
好的,以下是一个使用 Qt 实现的输入年份和月份,输出本月有多少天的程序示例:
```python
from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QLineEdit, QPushButton, QVBoxLayout
import sys
class MainWindow(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
# 创建控件
self.yearEdit = QLineEdit()
self.monthEdit = QLineEdit()
self.resultLabel = QLabel()
self.calcBtn = QPushButton("计算")
# 设置布局
layout = QVBoxLayout()
layout.addWidget(QLabel("请输入年份和月份"))
layout.addWidget(QLabel("年份:"))
layout.addWidget(self.yearEdit)
layout.addWidget(QLabel("月份:"))
layout.addWidget(self.monthEdit)
layout.addWidget(self.calcBtn)
layout.addWidget(self.resultLabel)
self.setLayout(layout)
# 连接信号和槽函数
self.calcBtn.clicked.connect(self.calculateDays)
def calculateDays(self):
year = int(self.yearEdit.text())
month = int(self.monthEdit.text())
# 判断闰年
is_leap = (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0)
# 计算天数
if month in [1, 3, 5, 7, 8, 10, 12]:
days = 31
elif month in [4, 6, 9, 11]:
days = 30
else:
days = 29 if is_leap else 28
# 显示结果
self.resultLabel.setText(f"{year}年{month}月有{days}天")
if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())
```
这个程序创建了一个窗口,提供了两个文本框和一个按钮,用户可以在文本框中输入年份和月份,然后点击按钮计算天数。计算天数的代码与之前给出的 Python 代码相同,只是在计算完成后将结果显示在一个 QLabel 控件中。
用python编写程序,输入程序中的年、月,输出本月有多少天。求它的语句
可以使用 Python 的 calendar 模块来实现这个功能,具体语句如下:
```python
import calendar
year = int(input("请输入年份:"))
month = int(input("请输入月份:"))
days = calendar.monthrange(year, month)[1]
print(f"{year}年{month}月有{days}天")
```
这个程序会先让用户输入年份和月份,然后使用 calendar.monthrange() 函数获取该月份的天数,最后输出结果。
阅读全文