上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 187 下一页
摘要: #include <stdio.h> main() { int x=4,y=4; int t=++x||++y; printf("%d %d %d\n",x,y,t); int a=1,b=1; t a&&--b; printf("%d %d %d\n",a,b,t); getchar(); } 阅读全文
posted @ 2022-10-17 20:44 myrj 阅读(71) 评论(0) 推荐(0)
摘要: #include <stdio.h> //int占用四个字节 //2的原码:00000000 00000000 00000000 00000010 //2取反后:11111111 11111111 11111111 11111101 //任何类型的数据在计算机中都是以二进制补码形式存储的 //正数的 阅读全文
posted @ 2022-10-17 20:12 myrj 阅读(233) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int x=10,y=20,t=0; if(x==y) t=x;x=y;y=t; printf("%d %d",x,y); int n=0; while(n++<=1) printf("%d\t",n); printf("%d\n",n); / 阅读全文
posted @ 2022-10-17 19:47 myrj 阅读(119) 评论(0) 推荐(0)
摘要: import psutil def guanbi(): TARGET = "adb.exe" [process.kill() for process in psutil.process_iter() if process.name() == TARGET] 阅读全文
posted @ 2022-10-17 11:02 myrj 阅读(109) 评论(0) 推荐(0)
摘要: #include <stdio.h> //每找到一个重复的元素,则最末尾前移一位,去重范围缩小一位 //找到重复元素后,此时数组下标之后的元素向前移一位 //程序后,数组中最右边的值是原数组最右边的值 main() { //int a[]={1,1,1,1,2,2,2,2,2,3,4,5,5,6,7 阅读全文
posted @ 2022-10-17 08:39 myrj 阅读(292) 评论(0) 推荐(0)
摘要: from PySmartCard.CpuCard import PcscReaderA实例化读卡器:pcsc = PcscReader()B获取所有的读卡器列表:readerName = pcsc.get_pcsc_readerlist() readerNameList = readerName.s 阅读全文
posted @ 2022-10-12 09:23 myrj 阅读(294) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-10-09 19:08 myrj 阅读(131) 评论(0) 推荐(0)
摘要: #include <stdio.h> main() { int a[8][8],i,j; for(i=0;i<8;i++) { a[i][0]=1; a[i][i]=1;} for(i=2;i<8;i++) for(j=1;j<i;j++) a[i][j]=a[i-1][j-1]+a[i-1][j] 阅读全文
posted @ 2022-10-09 10:25 myrj 阅读(141) 评论(0) 推荐(0)
摘要: mfcuk.exe -C -R 3 -S 250 - s 250 -v 3mfcuk -C -R 0:A -s 250 -S 250 -v 3 使用 mcuk 破解 mfcuk (MiFare Classic Universal toolKit) 是一款基于 dackside 攻击原理破解全加密 M 阅读全文
posted @ 2022-10-08 14:23 myrj 阅读(1296) 评论(0) 推荐(0)
摘要: #include <stdio.h> //为小学一年级学生随机出10道题,加法或减法随机出现,保证涉及到的数在0-9之间,结果不能出现负数 //程序运行输入结果后提示对或错,最后并统计做对了几道题,及最后得分(每题10分计算) #include <math.h> #include <stdlib.h 阅读全文
posted @ 2022-10-08 08:46 myrj 阅读(234) 评论(0) 推荐(0)
上一页 1 ··· 88 89 90 91 92 93 94 95 96 ··· 187 下一页