会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
myrj
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
90
91
92
93
94
95
96
97
98
···
188
下一页
2022年10月17日
C语言:删除已经排序的整型数组中的重复值
摘要: #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
阅读(302)
评论(0)
推荐(0)
2022年10月12日
PYTHON apdu命令
摘要: from PySmartCard.CpuCard import PcscReaderA实例化读卡器:pcsc = PcscReader()B获取所有的读卡器列表:readerName = pcsc.get_pcsc_readerlist() readerNameList = readerName.s
阅读全文
posted @ 2022-10-12 09:23 myrj
阅读(307)
评论(0)
推荐(0)
2022年10月9日
开关设置方法
摘要:
阅读全文
posted @ 2022-10-09 19:08 myrj
阅读(131)
评论(0)
推荐(0)
C语言:杨辉三角形
摘要: #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
阅读(145)
评论(0)
推荐(0)
2022年10月8日
mfcuk命令
摘要: 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
阅读(1398)
评论(0)
推荐(0)
C语言:随机出题
摘要: #include <stdio.h> //为小学一年级学生随机出10道题,加法或减法随机出现,保证涉及到的数在0-9之间,结果不能出现负数 //程序运行输入结果后提示对或错,最后并统计做对了几道题,及最后得分(每题10分计算) #include <math.h> #include <stdlib.h
阅读全文
posted @ 2022-10-08 08:46 myrj
阅读(239)
评论(0)
推荐(0)
2022年10月7日
支付宝帐单下载
摘要: 商户版转个人版,点击 右上角 图标 返回个人版
阅读全文
posted @ 2022-10-07 14:07 myrj
阅读(15)
评论(0)
推荐(0)
循环定时开关的设置方法
摘要: 设定好时间显示屏显示时,记得点击开关按键确认,一般点击后数字会闪烁,停止闪烁后数字后有小数点,这说明在设定生效了【如显示屏已经不显示请点按两下,第一下是唤醒第二次是确认】
阅读全文
posted @ 2022-10-07 13:47 myrj
阅读(910)
评论(0)
推荐(0)
2022年10月6日
C语言:ASCII码为0的字符成为循环条件
摘要: #include <stdio.h> main() { char s[]="012xy\08s34f4w2"; //ascii码0对应的字符为空字符 //本来\08可以理解为1个字符,但8不是8进制数,斜线只能转义0 //当循环到\0时,循环条件不成立,则退出循环 int i,n=0; for(i=
阅读全文
posted @ 2022-10-06 17:05 myrj
阅读(172)
评论(0)
推荐(0)
C语言:字符串复制与连接的特殊应用
摘要: #include <stdio.h> #include <string.h> main() { char a[10]="abc",b[10]="012",c[10]="xyz"; strcpy(a+1,b+2);//b+2对应的字符2\0,结果bc改为2\0 ,所以a结果为a2 puts(strca
阅读全文
posted @ 2022-10-06 16:51 myrj
阅读(56)
评论(0)
推荐(0)
上一页
1
···
90
91
92
93
94
95
96
97
98
···
188
下一页
公告