bao1xf2 发表于 2022-5-8 00:52:52

判断给定年份是否为闰年

为什么一直有报错,检查了几次没找到原因,各位大佬帮忙解答下{:5_108:}

n = 3
while n > 0 :
    year = input('请输入一个年份:')
    while year.isdigit():
      year = int(year)
      if year % 400 == 0:
            print("今年为世纪闰年哦!")
      else:
            if year % 4 == 0:
                print("今年为普通闰年!")
            else :
                print("不好意思","今年不是闰年",sep = "-",end = "!")
            
    while not year.isdigit():
      year = input("抱歉,您的输入有误,请输入一个整数:")
    n = n - 1

suchocolate 发表于 2022-5-8 02:08:10

本帖最后由 suchocolate 于 2022-5-8 02:12 编辑

第二个while里year = int(year) ,把year变成了int型导致。
你可以用在循环里用其他变量名替换掉year。

jackz007 发表于 2022-5-8 07:24:10

n = 3
while n:
    while True:
      try:
            year = int(input('请输入年份:'))
            break
      except:
            print('请输入整数')
    if (year % 4 == 0 and year % 100 != 0) or year % 400 == 0:
      if year % 400 == 0:
            print('世纪闰年')
      else:
            print('普通闰年')
    else:
      print('不是闰年')
    n -= 1

Twilight6 发表于 2022-5-8 08:34:40

.isdigit() 字符串方法是判断字符串是否为纯数字字符串,而你在内部的循环中 year = int(year)

将之前的字符串 year 变量 覆盖为了整形的 year,所以导致后续调用 .isdigit() 报错

而且你内部的 while 循环是死循环,可以将代码改成这样,内嵌的第二个 while 提前即可,参考代码:

n = 3
while n > 0:
    temp = input('请输入一个年份:')
    while not temp.isdigit():
      temp = input("抱歉,您的输入有误,请输入一个整数:")
      
    year = int(temp)
    if year % 400 == 0:
      print("今年为世纪闰年哦!")
    else:
      if year % 4 == 0:
            print("今年为普通闰年!")
      else:
            print("不好意思", "今年不是闰年", sep="-", end="!")
      
    n = n - 1


页: [1]
查看完整版本: 判断给定年份是否为闰年