上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 181 下一页
摘要: #include <stdio.h> //为小学一年级学生随机出10道题,加法或减法随机出现,保证涉及到的数在0-9之间,结果不能出现负数 //程序运行输入结果后提示对或错,最后并统计做对了几道题,及最后得分(每题10分计算) #include <math.h> main() { int i,a,b 阅读全文
posted @ 2022-10-06 15:43 myrj 阅读(179) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { int a,b,c,i; for(a=1;a<=9;a++) for(b=0;b<=9;b++) for(c=0;c<=9;c++) if(a*a*a+b*b*b+c*c*c==a*100+b*10+c) printf("%d ",a*100+ 阅读全文
posted @ 2022-10-06 09:44 myrj 阅读(414) 评论(0) 推荐(0) 编辑
摘要: CPU的数据处理能力 CPU是计算机的核心,决定了计算机的数据处理能力和寻址能力,也即决定了计算机的性能。CPU一次(一个时钟内)能处理的数据的大小由寄存器的位数和数据总线的宽度(也即有多少根数据总线)决定,我们通常所说的多少位的CPU,除了可以理解为寄存器的位数,也可以理解数据总线的宽度,通常情况 阅读全文
posted @ 2022-10-05 18:55 myrj 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 在C语言中,指针变量的值就是一个内存地址,&运算符的作用也是取变量的内存地址,请看下面的代码: #include <stdio.h> #include <stdlib.h> int a = 1, b = 255; int main(){ int *pa = &a; printf("pa = %#X, 阅读全文
posted @ 2022-10-05 18:41 myrj 阅读(143) 评论(0) 推荐(0) 编辑
摘要: import requests r=requests.head(urla,stream=True) #aa=requests.post(url,headers=head1,json=json2) urlx=r.headers['Location'] 阅读全文
posted @ 2022-10-05 15:14 myrj 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 有4个圆塔,圆心分别为(2,2)、(-2,2)、(-2,-2)、(2,-2),圆半径为1。这4个塔的高度为10m,塔以外无建筑物。今输入任一点的坐标,求该点的建筑高度(塔外的高度为0) #include <stdio.h> //四个圆心坐标:(2,2) (-2,-2) (2,-2) (-2,2) / 阅读全文
posted @ 2022-10-05 09:17 myrj 阅读(247) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> main() { int a,b,c,d; for(a=-9;a<=9;a++) { for(b=1;b<=19-abs(a);b++) printf(" "); for(c=0;c<2*abs(a)+1;c++) print 阅读全文
posted @ 2022-10-05 09:11 myrj 阅读(867) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-10-02 11:05 myrj 阅读(174) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //数组整体赋值使用scanf()用数组名只能给第一个赋值 main() { int a[4],b; scanf("%d",a); for(b=0;b<4;b++) printf("%d ",a[b]); getchar(); } 搜索 复制 阅读全文
posted @ 2022-09-30 15:07 myrj 阅读(260) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> void lianjie(char a[],char b[],char c[]) { int i,j,len1=strlen(a),len2=strlen(b); for(i=0;i<len1;i++) c[i]=a[i] 阅读全文
posted @ 2022-09-30 11:04 myrj 阅读(151) 评论(0) 推荐(0) 编辑
上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 181 下一页