Crossin的编程教室

标题: 猜数字,小程序,第一次成功,值得庆祝! [打印本页]

作者: 我是一个小菜鸟    时间: 2015-12-10 14:58
标题: 猜数字,小程序,第一次成功,值得庆祝!
想实现的结果:
COM:猜猜我现在想的数字是什么?嗯,你想的数字是:3
COM:Your answer is too small.
嗯,你想的数字是:8
COM:Your answer is too small.
嗯,你想的数字是:11
COM:Your answer is too large.
嗯,你想的数字是:10
COM:BINGO!!!

Process finished with exit code 0


代码:
#!/usr/bin/python
# -*- coding=utf-8 -*-
#author:我是一个小菜鸟

word="COM:猜猜我现在想的数字是什么?"
print(word)         #用的版本是python3.5.0
#digit=int(input("please input:"))

while 1:            #while循环语句
    digit=int(input("嗯,你想的数字是:"))   #输入一个数字
    if digit<10:
        print("COM:Your answer is too small.")
        continue              #跳过这个条件
    elif digit>10:
        print("COM:Your answer is too large.")
        continue
    else:
        print("COM:BINGO!!!")
        break                #结束while循环







欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/) Powered by Discuz! X2.5