上一页 1 ··· 117 118 119 120 121 122 123 124 125 ··· 189 下一页
摘要: //一只小猴子一天摘了许多桃子,第一天吃了一半,然后忍不住又吃了一个;第二天又吃了一半,再加上一个; //后面每天都是这样吃。到第10天的时候,小猴子发现只有一个桃子了。问小猴子第一天共摘了多少个桃子。 #include<stdio.h> int main() { int i = 1; int j 阅读全文
posted @ 2021-12-24 08:35 myrj 阅读(94) 评论(0) 推荐(0)
摘要: pid = GetWeChatPID('WeChat.exe')app = Application(backend='uia').connect(process=pid)# 拿到微信主窗口win_main_Dialog = app.window(class_name='WeChatMainWndFo 阅读全文
posted @ 2021-12-22 14:11 myrj 阅读(302) 评论(0) 推荐(0)
摘要: python3安装win32api先安装pip install pywin32再安装python -m pip install pypiwin32 阅读全文
posted @ 2021-12-21 13:52 myrj 阅读(1424) 评论(0) 推荐(0)
摘要: import time,sys import psutil from pywinauto.application import Application from time import sleep from pywinauto import mouse from pywinauto.keyboard 阅读全文
posted @ 2021-12-19 13:48 myrj 阅读(189) 评论(0) 推荐(0)
摘要: 下载地址:Downloads (mitmproxy.org) 控制面板:网络 代理 手动设置 开 127.0.0.1 8080 选择:请勿将代理服务器用于本地(intranet)地址浏览器打开http://mitm.it/ WIN10下载证书 安装时提示密码 为空,下一步,位置选择“受信任的根证书颁 阅读全文
posted @ 2021-12-19 06:38 myrj 阅读(672) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int arr[] = { 22, 34, 3, 32, 33,22,33,33,22,82, 55, 89, 50, 37, 5, 64, 35, 9, 70 }; int len = (int) sizeof(arr) / size 阅读全文
posted @ 2021-12-17 21:06 myrj 阅读(773) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int arr[] = { 22, 34, 3, 32, 82, 55, 89, 50, 37, 5, 64, 35, 9, 70 }; int len = (int) sizeof(arr) / sizeof(*arr); print 阅读全文
posted @ 2021-12-17 20:52 myrj 阅读(805) 评论(0) 推荐(0)
摘要: #include <stdio.h> #define N 10 main() { int shu[N][N]={0},a,b,c; for(a=0;a<N;a++) { for(c=N-1-a;c>=0;c=c-1) printf(" ") ; for(b=0;b<=a;b++) { shu[a][ 阅读全文
posted @ 2021-12-17 16:27 myrj 阅读(940) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <math.h> main() { int shu[6][6]={0}; int a,b; for(a=0;a<6;a++) { for(b=0;b<6;b++) { if(a==b) shu[a][b]=1; if(a+b==5) shu[a 阅读全文
posted @ 2021-12-17 15:16 myrj 阅读(504) 评论(0) 推荐(0)
摘要: Delphi 禁用TEdit右键菜单及复制粘贴简单的方法如下:1) 设置TEdit的ReadOnly 属性为True Edit1.ReadOnly := True;2) 在TEdit的OnContextPopup中使Handled := True procedure TFrmReport.Edit1 阅读全文
posted @ 2021-12-16 15:12 myrj 阅读(276) 评论(0) 推荐(0)
上一页 1 ··· 117 118 119 120 121 122 123 124 125 ··· 189 下一页