上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 181 下一页
摘要: #include <stdio.h> //程序功能:求s=1+2+3+4+5+....+100 //【】位置需要填写相应内容,保证程序能正常运行,无警告提示。 main() { 【1】; for(a=1;a<=【2】;a++) s=【3】; printf("s=%d\n",【4】); getchar 阅读全文
posted @ 2023-02-07 14:41 myrj 阅读(88) 评论(0) 推荐(0) 编辑
摘要: //交换任意两个整型变量的值 //【】位置需要填写相应内容,保证程序能正常运行,无警告提示。 【1】 main() { int a=1,b=2; printf("a=%d,b=%d\n",a,b); a=【2】; b=【3】; a=【4】; printf("a=%d,b=%d\n",a,b); ge 阅读全文
posted @ 2023-02-07 14:35 myrj 阅读(58) 评论(0) 推荐(0) 编辑
摘要: Python使用requests時遇到Failed to establish a new connection解决方法:但是程式邏輯的關係我會在短時間使用多次requests.post其結果就是跳出了Failed to establish a new connection這樣一個錯誤google一下 阅读全文
posted @ 2023-02-07 08:51 myrj 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: CFPS计算分性别家庭子女数根据fid18分组,增加变量 male_size,其值为根据fid18分组,gender_update=1的总数(fid18为家庭编号,家庭编号相同则为同一家庭)egen male_size=count(fid18) if gender_update==1,by(fid1 阅读全文
posted @ 2023-02-06 21:13 myrj 阅读(577) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //任意整型数组,由连续几个数组成,少其中一个数,利用程序求出少得数 main() { int a[5]={0,2,4,1},x=0,i; for(i=0;i<4;i++) x^=a[i]; for(i=0;i<=4;i++) x^=i; printf("%d" 阅读全文
posted @ 2023-02-06 21:11 myrj 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽ //交换两个整型变量的值 main() { int a,b; scanf("%d%d",&a,&b); printf("a=%d,b=%d\n"); a=⑴; b=⑵; a=⑶; printf("a=%d,b=%d\n"); getch 阅读全文
posted @ 2023-02-06 20:12 myrj 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 文件路径命令命令1: pwd //显示当前工作路径 命令2: dir //显 示当前路径下所有文件/文件夹 命令3: cd“文件夹路径”//更改工作文件路径 use“文件名.dta" //从当前文件路径读入数据 use"文件名.dta" ,clear //删除当前数据, 并从当前工作路径下读入数据 阅读全文
posted @ 2023-02-01 14:29 myrj 阅读(1531) 评论(0) 推荐(0) 编辑
摘要: import urllib3urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) #忽略警告 aa=requests.post(url,headers=head1,data=ap1,verify=False) 阅读全文
posted @ 2023-01-26 22:52 myrj 阅读(353) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int fh(char ab[]) { int len=strlen(ab),a=0; for(a=0;a<=len;a++) if(ab[a]!=ab[len-a-1]) return 0; return 1; } ma 阅读全文
posted @ 2023-01-26 10:26 myrj 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> main() { char zf[7],zfa[7]; int a=0,b=0,c=0,len1,len2; gets(zf); gets(zfa); len1=strlen(zf),len2=strlen(zfa); w 阅读全文
posted @ 2023-01-26 10:16 myrj 阅读(195) 评论(0) 推荐(0) 编辑
上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 181 下一页