上一页 1 ··· 104 105 106 107 108 109 110 111 112 ··· 180 下一页
摘要: #include <stdio.h> void midd(char s[],int m,int n,char q[]); main() { int i,j=0; char s1[80],s2[30]; printf(" 请输入字符串:\n") ; gets(s1); puts(s1); midd(s 阅读全文
posted @ 2022-02-27 16:20 myrj 阅读(68) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { int i,j=0; char s1[80],s2[30]; printf(" 请输入第一个:\n") ; scanf("%s",s1); getchar(); printf(" 请输入第一个:\n"); scanf("%s",s2); get 阅读全文
posted @ 2022-02-27 15:05 myrj 阅读(113) 评论(0) 推荐(0) 编辑
摘要: def list_all_dict(dict_a): if isinstance(dict_a,dict) : #使用isinstance检测数据类型 for x in range(len(dict_a)): temp_key = list(dict_a.keys())[x] temp_value 阅读全文
posted @ 2022-02-25 23:05 myrj 阅读(632) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" void main() { int i; //任意10个数值,也可以不是8位 unsigned char data[10]={0x12,0x21,0x1A,0xB1,0xC1,0xEB,0xDF,0xCA,0xF6,0xDD}; unsigned char ou 阅读全文
posted @ 2022-02-25 20:47 myrj 阅读(785) 评论(0) 推荐(0) 编辑
摘要: M1 S50卡 目前最常见的高频卡,也是我们口中俗称的IC卡。M1卡科储存的数据大小为8k,分为16个扇区,每个扇区分4个块,每个块为16个字节,以块为存取单位。每个扇区都有独立的一组密码及访问控制,每张卡有唯一的一个32位的序列号。每个扇区的0,1,2块为数据块,用来存储数据,第3块为控制块,包括 阅读全文
posted @ 2022-02-25 19:38 myrj 阅读(5210) 评论(1) 推荐(0) 编辑
摘要: 1、读取到卡的UID,如:33:6c:57:162、对UID的4位顺序置反:16:57:6c:333、对该十六位数进行取反加1: ~0x16576c33+1=-3748280834、取绝对值,即:374828083 韦根26、34的计算-EM卡EM卡10位转8位卡号的原理和方法 键盘口数据转换成韦根 阅读全文
posted @ 2022-02-25 19:31 myrj 阅读(1261) 评论(0) 推荐(0) 编辑
摘要: {'cardData': {'area': '东西湖区', 'attributes': 'spStuffStatus:95.0;newComment:1;proPolishTime:1645636872508;bargain:1;firstPrice:4488.00;spInspect:1;pro_ 阅读全文
posted @ 2022-02-25 06:26 myrj 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 运行时提示: requests.exceptions.InvalidHeader: Invalid return character or leading space in header: user-agent 主要原因是headers中的值开头不能是空格 正确:'user-agent': 'Moz 阅读全文
posted @ 2022-02-24 09:02 myrj 阅读(728) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int shu(int a,int b); main() { printf("%d",shu(23,56)); getchar(); } int shu(int a,int b) { int aa; aa=(b%10)*1000+b/10*100+(a%10)* 阅读全文
posted @ 2022-02-22 19:14 myrj 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 同构数:一个数是其平方的尾数:如5 25 ;25 625; #include <stdio.h> main() { int a,b,c; for(a=1;a<10000;a++) if(tgs(a)) printf("%d ",a); getchar(); } int tgs(int x) { in 阅读全文
posted @ 2022-02-22 19:02 myrj 阅读(724) 评论(0) 推荐(0) 编辑
上一页 1 ··· 104 105 106 107 108 109 110 111 112 ··· 180 下一页