码迷,mamicode.com
首页 >  
搜索关键字:guess    ( 609个结果
VS Code 运行 JavaScript 文件时出现“node...”乱码或错误
1.乱码图片: 2.如果是中文乱码的话,可以到设置里边把「Auto Guess Encoding」这一项勾起来。 3.如果不是这个原因,可能是因为没安装 Node.js 和配置 Node.js 环境,我就是这样子解决乱码问题的。在 windows 下安装和配置 Node.js 环境的教程可见: "N ...
分类:编程语言   时间:2019-10-15 21:25:12    阅读次数:490
猜年龄游戏
1 # 允许用户最多尝试3次,3次都没猜对的话,就直接退出,如果猜对了,打印恭喜信息并退出 2 3 import random 4 age= random.randint(1,5) 5 count = 0 6 loop = 1 7 while count <3: 8 guess = int(inpu... ...
分类:其他好文   时间:2019-09-20 19:02:24    阅读次数:102
for循环
#!/usr/bin/envpython--coding:utf-8--Author:EricEric_age=23counter=0foriinrange(10):ifcounter<3:Guess_num=int(input("inputyourguessnum:"))ifEric_age==Guess_num:print("Congratulations!yougotit....")b
分类:其他好文   时间:2019-09-17 22:23:29    阅读次数:104
对于char,short和byte类型的运算
What does this program print? Did you guess 3? Too bad, this program won't compile. Why? Well, it so happens that addition of bytes in Java is defined ...
分类:其他好文   时间:2019-09-14 11:01:51    阅读次数:157
函数中,如何修改形参的默认值
```python """ 默认形参:在函数定义阶段,提前赋值给形参, 当你实参传值的时候,实参传的值会覆盖形参的默认值。 下面的案例中,age的值从18,变成了30。 """ def guess_age(age=18): while True: inp_age=int(input('输入年龄:')... ...
分类:其他好文   时间:2019-09-13 20:03:30    阅读次数:116
程序变聪明了
https://crossincode.com/vip/homework/34/import randomNumber = random.randint(1, 100)bingo = Falsewhile bingo == False: Guess = int(input()) if Guess >... ...
分类:其他好文   时间:2019-09-10 21:01:38    阅读次数:90
(Easy) Guess Number Higher or Lower -LeetCode
Description: We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which number I picked. Every time y ...
分类:其他好文   时间:2019-09-02 17:02:14    阅读次数:104
Leetcode之二分法专题-374. 猜数字大小(374. Guess Number Higher or Lower)
Leetcode之二分法专题-374. 猜数字大小(374. Guess Number Higher or Lower) 我们正在玩一个猜数字游戏。 游戏规则如下:我从 1 到 n 选择一个数字。 你需要猜我选择了哪个数字。每次你猜错了,我会告诉你这个数字是大了还是小了。你调用一个预先定义好的接口  ...
分类:其他好文   时间:2019-08-27 09:14:13    阅读次数:87
Y.Guess the number
Y 水题,但是第一次提交还是粗心错了 ...
分类:其他好文   时间:2019-08-16 00:36:37    阅读次数:74
python-20190707
'''print("hello world!")print("123") x=3y=5print("x乘以y=", x*y) name = "alex li"name2 = nameprint(name,name2)name = "jack"print("what is the value of n ...
分类:编程语言   时间:2019-08-15 12:36:20    阅读次数:85
609条   上一页 1 ... 6 7 8 9 10 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!