上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 180 下一页
摘要: 1.金地酒店由北向南,右转进入阳光大街 2.康平街由西向东,右转进入西环一路 3,振华大街由东向西,右转进入西环一路 4.宁乐大街由西向东,右转进入津泉路 阅读全文
posted @ 2022-04-27 16:19 myrj 阅读(166) 评论(0) 推荐(0) 编辑
摘要: int ab(int a,int b) { int c,d; for(c=1;c<=b;c++) if(a%c==0&&b%c==0) d=c; return d; } int gygb(int a,int b,int m) { int t,c,gy,gb; if(a>b) t=a,a=b,b=t; 阅读全文
posted @ 2022-04-27 15:59 myrj 阅读(86) 评论(0) 推荐(0) 编辑
摘要: #思路:先求最大公约数,再用两个数的积除以最大公约数,即为最小公倍数 #include <stdio.h> int main() { int a,b,c,d; scanf("%d %d",&a,&b); if(a>b) c=a,a=b,b=c; for(c=a;c>=1;c--) { if(b%c= 阅读全文
posted @ 2022-04-27 15:42 myrj 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1.以管理员身份运行cmd 2.net user admin 123456 #将用户admin密码改为123456 补充: 在windows7中新增一个用户admin365,密码为password。在单击“开始”-“运行”中输入“cmd”并按“Shift+Ctrl+Enter”组合键,输入命令“ n 阅读全文
posted @ 2022-04-27 12:40 myrj 阅读(210) 评论(0) 推荐(0) 编辑
摘要: import requests,sys,time,re head1={'Host':'2865.litevote.com', 'Content-Length':'60', 'Accept':"application/json, text/plain, */*",'jwt':'', 'User-Age 阅读全文
posted @ 2022-04-27 07:03 myrj 阅读(217) 评论(0) 推荐(0) 编辑
摘要: # 获取当前鼠标位置print(pyautogui.position())在每次调用PyAutoGUI的函数后设置2.5秒的暂停: # 暂停2.5spyautogui.PAUSE = 2.5 此外,为了防止程序出问题,当鼠标移动到屏幕左上角,会引发pyautogui.FailSafeExceptio 阅读全文
posted @ 2022-04-26 03:51 myrj 阅读(802) 评论(0) 推荐(0) 编辑
摘要: import pyautoguiprint(pyautogui.size())#显示当前显示器分辩率pyautogui.moveTo(525,455)#移动鼠标到指定位置pyautogui.click()#当前位置单击pyautogui.doubleClick()#当前位置双击pyautogui.g 阅读全文
posted @ 2022-04-25 12:45 myrj 阅读(1701) 评论(0) 推荐(0) 编辑
摘要: select regexp_replace(neirong,'<.*>','') from dxyys 将字段neirong中的html标签即< >之间的所有字符替换成空来显示 update dxyys set neirong=regexp_replace(neirong,'<.*>','') 将字 阅读全文
posted @ 2022-04-24 07:36 myrj 阅读(807) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int gys(int ys,int b) { ys=ys%b; if(!ys) return b; return (gys(b,ys)); } main() { printf("%d\n",gys(110,24)); int n='e'; switch(n-- 阅读全文
posted @ 2022-04-23 15:45 myrj 阅读(136) 评论(0) 推荐(0) 编辑
摘要: import random def getpwd(ab,num): if num==1: for x in ab: yield x else: for x in ab: for y in getpwd(ab,num-1): yield x+y from itertools import produc 阅读全文
posted @ 2022-04-20 14:04 myrj 阅读(113) 评论(0) 推荐(0) 编辑
上一页 1 ··· 97 98 99 100 101 102 103 104 105 ··· 180 下一页