1 #通过DEBUG可以看出是guess输入内容(heads, tails)和TOSS内容(0,1)不一致,需修改和TOSS的比较项。 2 import random,logging 3 logging.basicConfig(level=logging.DEBUG, format='%(ascti... ...
分类:
编程语言 时间:
2017-04-23 15:02:52
阅读次数:
237
换了msys2后。编译xerces-c-2.8.0。./runConfigure -pmingw-msys -cgcc -xg++ -s -P/opt/xercesc-2.8.0 后遇到如标题所看到的问题。详下: checking for unistd.h... yes checking for X ...
分类:
其他好文 时间:
2017-04-17 09:31:54
阅读次数:
550
前两天在装机器软件的时候,出现了下面的错误,[html]viewplaincopyinvalidconfigurationx86_64-unknown-linux-gnu‘machinex86_64-unknown‘notrecognized在网上查了半天,解决方案有三个:1.把/usr/share/libtool/config.guess覆盖到相关软件自带的config.guess把/usr/share/li..
分类:
系统相关 时间:
2017-04-14 10:43:55
阅读次数:
419
lucky_num =20input_num=6guess_count=1while input_num != lucky_num and guess_count <=3: print("guess count: %d"%guess_count) input_num= input("input th ...
分类:
其他好文 时间:
2017-04-07 14:13:26
阅读次数:
147
有K个棋子在一个大小为N×N的棋盘。一开始,它们都在棋盘的顶端,它们起始的位置是 (1,a1),(1,a2),...,(1,ak) ,它们的目的地是 (n,b1),(n,b2),...,(n,bk)。 一个位于 (r,c) 的棋子每一步只能向右走到 (r,c+1) 或者向下走到 (r+1,c) 。 ...
分类:
其他好文 时间:
2017-04-05 20:27:00
阅读次数:
216
# -*- coding:utf-8 -*- number = 23 test=True while test: guess=int(raw_input('输入数字')) if guess==number: print 'g=n' elif guess>number: print 'g>n' els... ...
分类:
编程语言 时间:
2017-04-03 14:51:47
阅读次数:
139
Jesus, what a great movie! Thousands of people are rushing to the cinema. However, this is really a tuff time for Joe who sells the film tickets. He i ...
分类:
其他好文 时间:
2017-03-29 19:15:58
阅读次数:
160
#猜年龄大小,用户最多猜三次age=50
i=0
whilei<3:
guess_age=int(input("Pleaseinputyouranswer:"))
ifguess_age>age:
print("toobig...tryagainplease")
elifguess_age<age:
print("toosmall...tryagainplease")
else:
print("Youguessedit!")
break
i+=..
分类:
编程语言 时间:
2017-03-28 20:14:00
阅读次数:
161
在Python 中有三种控制流语句——if、for 和while。 1.if语句 Number = 23 Guess = int(input('Enter an integer : ')) if Guess == Number: print('Congratulations, you guessed... ...
分类:
编程语言 时间:
2017-03-24 13:09:13
阅读次数:
198
/*猜数游戏,magic number#4,版本*/#include<stdio.h>#include<stdlib.h>#include<time.h>int main(void){ int magic;/*magic number*/ int guess;/*user's number*/ in ...
分类:
其他好文 时间:
2017-03-23 02:24:11
阅读次数:
134