上一页 1 ··· 77 78 79 80 81 82 83 84 85 ··· 181 下一页
摘要: #include <stdio.h> #include <string.h> struct data {char name[7];int age;} ab[5]={"张三",10,"李四",11,"张五",12,"李六",13,"陈七",14}; //编程将数组中所有姓张的年龄增加1,姓李的增加2, 阅读全文
posted @ 2022-12-11 19:54 myrj 阅读(378) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> struct data {char name[7];int age;} ab[5]={"张三",10,"李四",11,"张五",12,"李六",13,"陈七",14}; //编程将数组中所有姓张的年龄增加1,姓李的增加2,然后输出各个人的姓名与年龄 //中文字符 阅读全文
posted @ 2022-12-11 15:56 myrj 阅读(94) 评论(0) 推荐(0) 编辑
摘要: >>> import ast >>> aar='{"ab":1,"ac":2,"ad":3}' >>> aaxx=ast.literal_eval(aar) >>> aaxx {'ab': 1, 'ac': 2, 'ad': 3} >>> >>> aar='{"ab":1,"ac":2,"ad":3 阅读全文
posted @ 2022-12-11 15:38 myrj 阅读(28) 评论(0) 推荐(0) 编辑
摘要: import threading sem = threading.Semaphore(10)#设置最大线程数 #在线程调用的函数开始设置sem.acquire() #在线程调用的函数最后设置sem.release() def xiazai(iiv,chapter_url_list): sem.acq 阅读全文
posted @ 2022-12-09 21:51 myrj 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-12-09 10:32 myrj 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-12-04 12:26 myrj 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-12-04 12:25 myrj 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <time.h> int main () { time_t tt;//typedef long time_t;time_t实际上是long型,从一个时间点(一般是1970年1月1日0时0分0秒)到当前的秒数。 time(&tt); //获取秒数 阅读全文
posted @ 2022-12-04 10:41 myrj 阅读(624) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <stdlib.h> char* multiply(char* num1, char* num2) { int la,lb,lc,i,j; int a[2001]={0}; int b[2001]={0} 阅读全文
posted @ 2022-12-02 17:21 myrj 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 77 78 79 80 81 82 83 84 85 ··· 181 下一页