ICode9

精准搜索请尝试: 精确搜索
  • TDD by example (4) -- 变招2019-07-20 11:37:47

    原文链接:http://www.cnblogs.com/wangyh/archive/2009/07/13/TDD-by-example-4.html 先看to-do list   随机生成答案   检查输入是否合法    判断猜测结果   记录历史猜测数据并显示    判断猜测次数,如果满6次但是未猜对则判负    如果4个数

  • TDD by example (5) -- 后招2019-07-20 11:35:58

    原文链接:http://www.cnblogs.com/wangyh/archive/2009/07/13/TDD-by-example-5.html 还是to-do list开头  随机生成答案   检查输入是否合法    判断猜测结果   记录历史猜测数据并显示    判断猜测次数,如果满6次但是未猜对则判负   如果4个数

  • 023 程序的分支控制2019-07-14 18:01:24

    目录 一、概述 二、单分支结构 2.1 单分支示例 三、二分支结构 3.1 二分支示例 3.2 紧凑形式 四、多分支结构 五、条件判断及组合 5.1 条件判断 5.2 条件组合 5.3 条件判断及组合 六、程序的异常处理 6.1 异常处理 6.2 异常处理的基本使用 6.2.1 示例1 6.2.2 示例2 6.3 异常

  • LeetCode-299 Bulls and Cows2019-07-09 16:03:49

    题目描述 You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time your friend makes a guess, you provide a hint that indicates how many digits in said guess match y

  • 整数 浮点数 列表 字典 布尔值 格式化输出 输出 while循环2019-07-03 18:49:20

    整数 print(21+34)   浮点数 print(2.2+2.6) print(8.4-4.2)列表 place_name = ["shen zhen", "shang hai","shan xi", ["xi an","wei nan","yan an"]]print(place_name[3][1])#结果print(wei nan)输出 name

  • Python 3.5 基本知识12019-06-22 23:42:04

      首先python是一种面向对象、开源的、具有解析性的编程语言.接下来我们来看看python的基本一些语法.   学习一门语言,第一个程序就是Hello World程序.在Python里面,Hello World的程序代码如下:     print("Hello World")   从这句代码我们可以看出来,python是非常优雅简

  • python条件语句和变量赋值2019-06-13 14:56:19

    python的条件语句 字符串内变量赋值的方法 name = input("name:") age = int(input("age:")) job = input("job:") salary = input("salary:") info = ''' ---------- info of %s ---------- Name:%s Age:%d Job:%s Salary:%s '

  • python实践项目四:猜数字游戏2019-06-10 14:40:41

    题目要求:在1-20中随机生成一个数字,你来猜,只有6次机会。 1 #!/usr/bin/python 2 # -*- coding: UTF-8 -*- 3 4 import random 5 secretNumber=random.randint(1,20) 6 print "I'm thinking of a number between 1 and 20." 7 times = 0 8 for i in range(1,7): 9 print "

  • 基于猜数字游戏程序逐步完善(C语言基础练习)2019-06-05 13:48:36

    基于猜数字游戏程序逐步完善(C语言基础练习) 条件控制的循环利用 1 利用随机数的生成,完成猜数字游戏程序 #include<stdio.h> #include<stdlib.h> main() { int magic,guess; magic=rand(); printf(“Please input a magic number:”); scanf("%d",&guess); if(guess>magic) {

  • 测试开发-Day12019-05-24 19:44:04

    一、 接口测试 内容包含: 接口的概念 Json Cookie 和 Session 的区别 不同请求类型如何测试(get 和其他) Charles 的使用 接口:是指对协定进行定义的引用类型(来自百度)。通俗的讲,就是用来从数据库获取数据的。 Json:所有语言都可以解析的数据类型。 Cookie 和 Session:Session 是存在

  • python while循环和for 循环2019-05-23 10:37:47

    1.while循环   age_of_sy=18 guess_age=input("guess age:") count=0 while count<3:   if guess_age==age_of_sy:       print("yes,you are right!")       break   elif guess_age<age_of_sy:       print("think it bigger")    else:

  • 大数据笔记5.82019-05-08 18:53:53

    while循环语句 格式: 基本格式 ​ while(判断条件语句){ ​ 循环体语句; ​ } 扩展格式 ​ 初始化语句; ​ while(判断条件语句){ ​ 循环体语句; ​ 控制条件语句; ​ } 例:猜0–1000的随机数 package cn.llhc.det01; import java.util.Scanner; public class While

  • python_day12019-05-04 12:43:36

    编码 ASCII --> GB --> GBK --> utf-8 第一个程序 hello world 输密码 #Author:Elson Zengimport getpass_username = 'jian'_passwd = '123'username = input("username:")passwd = input("passwd:")if _passwd == passwd and _

  • UVALive - 4255-Guess(拓扑排序)2019-04-21 19:53:40

    Problem UVALive - 4255-Guess Time Limit: 3000 mSec Problem Description   Input The input consists of T test cases. The number of test cases T is given in the first line of the input. Each test case consists of two lines. The first line contains an inte

  • PTA——猜数字游戏2019-04-17 13:50:52

    PTA 7-24 猜数字游戏  1 #include <stdio.h> 2 int main() 3 { 4 int num, times; 5 scanf("%d %d", &num,&times); 6 7 int i = 0, guess; 8 while(i< times){ 9 scanf("%d", &guess);10 if(guess

  • python学习总结_12019-04-08 11:51:41

    变量与数据类型   表示能储存计算结果或能表示值抽象概念。   变量名必须是大小写英文、数字和_的组合,且不能用数字开头。 _test = 1test = 1   数据类型又分为整数、浮点数、字符串、布尔值(Ture and False)、空值(None)。   当输入的数据类型不同类时需要注意,如下输入值为

  • 374. 猜数字大小2019-04-06 10:47:36

    我们正在玩一个猜数字游戏。 游戏规则如下: 我从 1 到 n 选择一个数字。 你需要猜我选择了哪个数字。每次你猜错了,我会告诉你这个数字是大了还是小了。你调用一个预先定义好的接口 guess(int num),它会返回 3 个可能的结果(-1,1 或 0): -1 : 我的数字比较小 1 : 我的数字比较大 0

  • 299 Bulls and Cows2019-04-05 08:55:30

    1 题目 You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time your friend makes a guess, you provide a hint that indicates how many digits in said guess match

  • python_day012019-04-02 22:52:11

    B站小甲鱼视频001-004 基本语法: 输出: print("hello world!")print(5+2) 输入,变量: temp=input("猜数字:")guess=int(temp)if guess==8: print("猜中")else: print("猜错了")print("游戏结束") while循环:while guess!=8: 变量和字符串: teacher=

  • 使用Python编的猜数字小游戏2019-03-24 12:56:19

    import random secret = random.randint(1, 30) guess = 0 tries = 0 print("我叫丁丁,我有一个秘密数字!") print("数字从1到30,你只有6次机会!") while int(guess) != secret and tries < 6:     print("你猜的数字是?")     guess = input()     if in

  • 使用Python编的猜数字小游戏2019-03-24 11:42:53

    1 import random 2 3 secret = random.randint(1, 30) 4 guess = 0 5 tries = 0 6 7 print("我叫丁丁,我有一个秘密数字!") 8 print("数字从1到30,你只有6次机会!") 9 10 while int(guess) != secret and tries < 6:11 print("你猜的数字是?")12 guess = inpu

  • 013_Python3 条件控制2019-03-16 09:37:32

    1.if #!/usr/bin/python3   var1 = 100 if var1:     print ("1 - if 表达式条件为 true")     print (var1)   var2 = 0 if var2:     print ("2 - if 表达式条件为 true")     print (var2) print ("Good bye!")   输出结果: 1 - if 表达式条件为 true 100 Good bye

  • python基础 day1 var、 if、while、for、with as、open用法2019-03-11 22:51:15

    1.变量 name = input("name:") age = int(input("age:")) 删除变量可以这样做: del name del name,age %s 简写string代表类型,%d整数型,%f浮点型,%s包括了%d%f类型 info =''' ------ info of %s ------ Name:%s age:%d ''' % (name, name, age) prin

  • UVA 1612 Guess2019-03-10 16:41:55

    https://vjudge.net/problem/UVA-1612 题目 有 $n$ ($n\leqslant 16384$)位选手参加变成比赛。比赛有三道题目,每个选手的每道题目都有一个系统评测之前的预得分,接下来是系统测试。如果某道题目未通过系统测试,则该题的实际得分为0分,否则得分等于预得分。得分相同的选手,ID小的排前面。

  • Guess2019-03-02 15:47:31

      solution: // Forward declaration of guess API.// @param num, your guess// @return -1 if my number is lower, 1 if my number is higher, otherwise return 0int guess(int num);class Solution {public: //注意的是guess函数到底是谁的数字。 int guessNumber(int

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有