age_of_princal = 56 guess_age = int ( input (">>:") )"""if guess_age ==age_of_princal then print ("yes")else print ("no")""" if guess_age == age_of_pr ...
分类:
其他好文 时间:
2019-01-26 18:00:59
阅读次数:
170
1.使用easygui模块 很简单小巧的图像界面 想要了解百度就可以看到很多。这里不在啰嗦了。 2.实现的思路 思路很简单,时间紧,流程做的不规范见谅 3.面向对象的实现 创建了一个GuessNum的类,类中有成员有方法,代码整体上很规整。 ...
分类:
编程语言 时间:
2019-01-21 21:40:52
阅读次数:
288
用户在上传图片的时候,系统会报异常 insufficient memory case 4,追踪代码发生在jdk中 image.io 的 read() 方法。这是一个耽搁了很久的bug,客户反馈了好几次,找了几次方向都没处理好,搞得客户很不耐烦,我自己也很伤脑筋,差点就投降了。我尝试过本地测试复现,但... ...
分类:
其他好文 时间:
2019-01-20 20:50:29
阅读次数:
494
1 # Author:"Mamba" 2 3 import random 4 setNum = random.randint(1,10) 5 #print(setNum) 6 count = 0 7 while count == 0: 8 print('let`us play guess numbe... ...
分类:
编程语言 时间:
2019-01-19 17:27:45
阅读次数:
318
题目描述: guess.h: grader.cpp: cpp include"guess.h" include include include using namespace std; typedef unsigned long long u64; static struct random_t{ u ...
分类:
其他好文 时间:
2019-01-16 22:51:03
阅读次数:
280
1、最简单的while循环语句count=0whileTrue:count=count+1print(count)2、加上条件判断循环age=23count=0whilecount<3:age_guess=int(input("请输入数字:"))ifage_guess==age:print("你猜对了啦")break;elifage_guess>age:print("你猜大了")els
分类:
编程语言 时间:
2019-01-16 18:06:45
阅读次数:
223
分别用while循环和for循环来玩转猜数字游戏 1.对于限定猜数字次数 (1)while循环 number = 56 count = 0while count < 3: guess_number = int(input("guess number:")) if guess_number == nu ...
分类:
编程语言 时间:
2019-01-05 22:51:54
阅读次数:
230
Problem: This problem is an interactive problem new to the LeetCode platform. We are given a word list of unique words, each word is 6 letters long, a ...
分类:
其他好文 时间:
2018-12-31 19:11:50
阅读次数:
163
2.1 主线:变量-分支-循环-条件-函数【BIF内置函数】 等常规 文字游戏 猜数字 代码 ''' 第一个小游戏 ''' temp=input("猜猜我地心里想的那一个数字?:") guess=int(temp) if guess==5: print("你是我肚子里地小蛔虫么?") print(" ...
分类:
编程语言 时间:
2018-12-29 23:14:53
阅读次数:
205
1/ 局部变量的定义 在所有函数内定义的变量叫局部变量,在函数外的都是全局变量. 一定注意,上面描述的guess 是全部变量,因为它没有在函数中定义,故不能算局部变量. ...
分类:
编程语言 时间:
2018-12-23 14:01:35
阅读次数:
188