上一页 1 ··· 109 110 111 112 113 114 115 116 117 ··· 186 下一页
摘要: #include <stdio.h> #include <math.h> int pdzs(int n); main() { int a,b; for(a=1;a<=100;a++) if(!pdzs(a)) { for(b=2;b<=a;b++) { if(a%b==0) { printf("%d 阅读全文
posted @ 2022-03-03 09:47 myrj 阅读(74) 评论(0) 推荐(0)
摘要: 康佳电竞游戏电视:系统版本:V4.1.24-5374 主程序软件号99018230 解决方案: 酷喵--我的--播放设置-播放设置:私有播放器 搜索 复制 阅读全文
posted @ 2022-03-03 06:50 myrj 阅读(1015) 评论(0) 推荐(0)
摘要: def getCookiesFromHeaders(headers): '''从http响应中获取所有cookie''' cookies = list() for header in headers: if "Set-Cookie" in header: cookie = header[1].spl 阅读全文
posted @ 2022-03-01 16:34 myrj 阅读(33) 评论(0) 推荐(0)
摘要: #include <stdio.h> int pdzs(int n); main() { int a,b; for(a=1;a<1000;a++) if(pdzs(a)==1) printf("%d ",a); getchar(); } int pdzs(int n) { int a,b; if(n 阅读全文
posted @ 2022-02-28 22:35 myrj 阅读(403) 评论(0) 推荐(0)
摘要: //<序号>处, 并将<序号>删除,使程序运行出正确结果并保存;不得增行或删行,严禁更改程序结构,严禁使用备选语句之外的语句 //程序功能:实现两个字符串的连接(不使用库函数),即把字符串s2连接到字条串s1的后面 #include <stdio.h> main() { int i,j=0; cha 阅读全文
posted @ 2022-02-28 11:12 myrj 阅读(314) 评论(0) 推荐(0)
摘要: //<序号>处, 并将<序号>删除,使程序运行出正确结果并保存;不得增行或删行,严禁更改程序结构 //程序功能:求1+2+3+.....+100的值 #include <stdio.h> <1> { int sum,i; sum=0;i=1; <2>(i<=100) { sum=<3>; i=i+1 阅读全文
posted @ 2022-02-28 11:01 myrj 阅读(45) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> void midd(char s[],int m,int n,char q[]); void lefta(char s[],int m,char q[]); void righta(char s[],int m,char 阅读全文
posted @ 2022-02-27 17:13 myrj 阅读(129) 评论(0) 推荐(0)
摘要: #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 阅读(85) 评论(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 阅读(143) 评论(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 阅读(655) 评论(0) 推荐(0)
上一页 1 ··· 109 110 111 112 113 114 115 116 117 ··· 186 下一页