上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: package com.itheima; import java.util.Random; public class shuzu01 { // public static void main(String[] args) { // int arr [] = {12,45,98,73,60}; // 阅读全文
posted @ 2022-10-24 22:16 NiceTwocu 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 请参照 https://www.cnblogs.com/wrwangrong/p/16428981.html from selenium.webdriver import Chrome from webdriver_helper import get_webdriver driver=get_web 阅读全文
posted @ 2022-08-30 21:53 NiceTwocu 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 一、下载驱动地址 地址:http://chromedriver.storage.googleapis.com/index.html?path=103.0.5060.53/ 二、下载selenium三方库 在cmd命令中运行 pip install selenium 三、自动下载当前浏览器驱动 在cm 阅读全文
posted @ 2022-08-30 21:50 NiceTwocu 阅读(34) 评论(0) 推荐(0) 编辑
摘要: """ 水仙花数:一个三位数,他的个位数、十位数、百位数的立方和等于它本身 需求:判断输入的数是不是水仙花数,如果是水仙花数请打印,并逆序单独打印 思路: 输入一个数 判断这个数是几位数 gewei=i%10 shiwei=i//10%10 baiwei=i//100%10 判断输入的数是不是水仙花 阅读全文
posted @ 2022-08-03 22:33 NiceTwocu 阅读(141) 评论(0) 推荐(0) 编辑
摘要: """ 两数之和 需求:数组中的任意两个数之和等于目标的值,且不能重复,并返回在列表中的索引 例子: a=[1,2,3,4,5,6,7,8,9,10] b=10 1+9=10 在a中的索引分别是0,8 思路: 先统计列表中的元素数量 再通过循环遍历比较两个元素的和与目标值是否相等 再返回索引值 "" 阅读全文
posted @ 2022-08-02 21:18 NiceTwocu 阅读(86) 评论(0) 推荐(0) 编辑
摘要: ''' 需求:1-100的数字,如果个位数十位数是7,或者是7的倍数,需要喊过 ''' # for循环实现缝7过游戏 # for i in range(1,100): # gewei=i%10 # shiwei=i//10%10 # beishu=i%7 # if (gewei==7)or(shiw 阅读全文
posted @ 2022-08-02 19:35 NiceTwocu 阅读(183) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; import com.sun.xml.internal.ws.api.model.wsdl.WSDLOutput; public class shuzudemo2 { public static void main(String[] args) { //数组 阅读全文
posted @ 2022-08-02 00:09 NiceTwocu 阅读(768) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; import com.sun.xml.internal.ws.api.model.wsdl.WSDLOutput; public class shuzudemo { public static void main(String[] args) { //数组定 阅读全文
posted @ 2022-08-02 00:08 NiceTwocu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; public class shuzudemo1 { public static void main(String[] args) { //数组定义 // int[] arr=new int[]{98,99,100}; int[] arr={98,99,100 阅读全文
posted @ 2022-08-02 00:07 NiceTwocu 阅读(15) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; //判断一个整数是否是水仙花数 public class methodmedo10 { public static void main(String[] args) { // boolean k = j(111); //// System.out.print 阅读全文
posted @ 2022-08-02 00:05 NiceTwocu 阅读(21) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页