上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页
摘要: Java if单选择结构 掷色子游戏 package cn.geekeryi; public class IfTest01 { public static void main(String[] args){ // double d = Math.random(); //Math.random()生成 阅读全文
posted @ 2020-07-20 23:08 极客易先生 阅读(215) 评论(0) 推荐(0) 编辑
摘要: Java 获取用户输入 package com.geekeryi; import java.util.Scanner; public class TestScanner { public static void main(String[] args){ Scanner s = new Scanner 阅读全文
posted @ 2020-07-20 22:40 极客易先生 阅读(238) 评论(0) 推荐(0) 编辑
摘要: Scratch大神之路第57课:猜数字 视频教程链接: https://www.ixigua.com/6844404245458846215?logTag=dlbhzBUuwW0-E56DyH5KA 阅读全文
posted @ 2020-07-20 17:34 极客易先生 阅读(826) 评论(0) 推荐(0) 编辑
摘要: Python猜数字小游戏 关注“极客易先生”,实现自由。 import random def guess_number(): num = random.randint(1, 10000) while True: guess_number = input("Your guess number:") g 阅读全文
posted @ 2020-07-20 17:30 极客易先生 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-10 15:36 极客易先生 阅读(1099) 评论(0) 推荐(0) 编辑
摘要: SQLMAP安装指南windows操作系统安装sqlmap需要安装python2的运行环境 ## 如何安装python2打开python官网:https://www.python.org/downloads/release/python-2717/ 下载python2.7安装 下载地址:https: 阅读全文
posted @ 2020-04-13 13:20 极客易先生 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 三种数据结构, 线性表结构, 树结构, 图结构 更多黑客教程,来极客易先生的开发渗透课,上 hk007.cn 阅读全文
posted @ 2020-04-09 17:31 极客易先生 阅读(1093) 评论(0) 推荐(0) 编辑
摘要: def encode_base64(text): r""" >>> encode_base64('WELCOME to base64 encoding 😁') 'V0VMQ09NRSB0byBiYXNlNjQgZW5jb2Rpbmcg8J+YgQ==' >>> encode_base64('AÅᐃ 阅读全文
posted @ 2020-04-09 08:33 极客易先生 阅读(626) 评论(0) 推荐(0) 编辑
摘要: https://study.163.com/course/courseLearn.htm?courseId=302001#/learn/video?lessonId=1048309011&courseId=302001 阅读全文
posted @ 2020-03-29 17:34 极客易先生 阅读(121) 评论(0) 推荐(0) 编辑
摘要: import time a=time.time() for x in range(100): for y in range(100): for z in range(100): if (x+y+z==100) and (x*5+y*3+z/3==100): print(x,y,z) b = time 阅读全文
posted @ 2020-03-28 19:31 极客易先生 阅读(932) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 13 下一页