摘要: 编程题来自:牛客--华为机试--HJ73 题目: 根据输入的日期,计算是这一年的第几天 输入多行,每行空格分割,分别是年,月,日 代码: while True: try: year,month,day=map(int, input().split()) if year <= 0 or month > 阅读全文
posted @ 2021-04-06 19:48 平衡二叉树 阅读(128) 评论(0) 推荐(0) 编辑