上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 180 下一页
摘要: #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 阅读(682) 评论(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 阅读(726) 评论(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 阅读(677) 评论(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 阅读(407) 评论(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 阅读(192) 评论(0) 推荐(0) 编辑
摘要: pyinstaller -F -w -i aa.ico u-pan2.py 打包 并不打开黑屏窗口,aa.ico为图标文件 阅读全文
posted @ 2021-12-15 12:27 myrj 阅读(23) 评论(0) 推荐(0) 编辑
摘要: setting.py CLOSESPIDER_TIMEOUT=25200(七小时后关闭爬虫) 阅读全文
posted @ 2021-12-14 22:00 myrj 阅读(47) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int main(){ char cs[1024]; gets(cs); int count[256] = {0},i,m; for(i=0; i<strlen(cs); i++) count[cs[i]]++; int 阅读全文
posted @ 2021-12-14 21:06 myrj 阅读(1996) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { float shu[3][5],sum1[3]={0},sum2[5]={0},pjf1[3],pjf2[5]; int a,b; for(a=0;a<3;a++) { for(b=0;b<5;b++) { scanf("%f",&shu[a] 阅读全文
posted @ 2021-12-13 10:45 myrj 阅读(572) 评论(0) 推荐(0) 编辑
摘要: setting.py加入 COOKIES_ENABLED = False 设置 DEFAULT_REQUEST_HEADERS = { 'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, 阅读全文
posted @ 2021-12-12 20:37 myrj 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 180 下一页