wiwi 发表于 2016-12-10 20:07:19

求大神指导一下这个循环

print('------判断是不是闰年------')
temp = input('请输入一个年份:')
while not temp.isdigit():
   temp = input('你输入的不正确,请重新输入一个数字:')
num = int(temp)
if num/400 == int(num/400):
    print(temp + '年是闰年')   
else:
    print(temp + '年不是闰年')

这个运行一次只能查询一次,我想运行一次能无限查询,请问这个while循环怎样加,谢谢!

YZLPG 发表于 2016-12-10 23:27:31

额。。。随便写了一个。。。同新手,,写的太拙计
print('------判断是不是闰年------')
temp = input('请输入一个年份:')
while temp.isdigit():
    num = int(temp)
    if num/400 == int(num/400):
      print(temp + '年是闰年')   
    else:
      print(temp + '年不是闰年')
    temp = input('请再输入一个年份:')
    if temp.isdigit()==False:
      print('结束')
      break

拓离 发表于 2016-12-11 19:14:07

这样应该就可以了   
while "true":
    print('------判断是不是闰年------')
    temp = input('请输入一个年份:')
    while not temp.isdigit():
         temp = input('你输入的不正确,请重新输入一个数字:')
    num = int(temp)
    if num/400 == int(num/400):
      print(temp + '年是闰年')   
    else:
      print(temp + '年不是闰年')

你妹啊00 发表于 2016-12-11 23:35:05

s='Y'
while s=='Y':
    print('------判断是不是闰年------')
    temp = input('请输入一个年份:')
    while not temp.isdigit():
         temp = input('你输入的不正确,请重新输入一个数字:')
    num = int(temp)
    if num/400 == int(num/400):
        print(temp + '年是闰年')   
    else:
        print(temp + '年不是闰年')
    s=str(input('是否继续(是:Y)'))

蛋炒饭妖妖 发表于 2016-12-12 13:45:49

用while True。但是记得一定要写跳出循环的条件,不然就没办法终止

qzssmdx 发表于 2016-12-14 17:45:23

哎呀,同樣學習中..參考一下答案

小古比鱼 发表于 2020-12-22 18:42:04

print('------判断是不是闰年------')
while True:   # 此处添加循环,无限查询
    temp = input('请输入一个年份:')
    while not temp.isdigit():
         temp = input('你输入的不正确,请重新输入一个数字:')
    num = int(temp)
    if num/400 == int(num/400) or num%4==0 and num%100:   # 原代码有误,此处已修正
      print(temp + '年是闰年')   
    else:
      print(temp + '年不是闰年')
页: [1]
查看完整版本: 求大神指导一下这个循环