上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 181 下一页
摘要: #include <stdio.h> //假期小王跟随父亲去钓鱼,小王的父亲在这期间钓到了一条大鱼距离岸边 l 米,小明的父亲每5分钟向岸边收m米,然后休息 2分钟,这时鱼会向外游出n米, //试编写一个函数:对于任意指定的l,m,n值,试问小王父亲多少分钟可以把这条鱼钓上岸。 float sja( 阅读全文
posted @ 2023-02-15 11:22 myrj 阅读(53) 评论(0) 推荐(0) 编辑
摘要: vba 判断单元格内容是否为汉字=if(lenb(d1)<>len(d1),1,0)1为汉字0不是汉字 阅读全文
posted @ 2023-02-15 10:08 myrj 阅读(481) 评论(0) 推荐(0) 编辑
摘要: Sub CheckTableCells() Application.DisplayAlerts = False Dim sht As Worksheet Dim i, j As Integer For i = 1 To 10000 If (Range("e" & i).Value = "") The 阅读全文
posted @ 2023-02-15 07:43 myrj 阅读(41) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> //数组a中有8个不相等的元素,b中有5个不相等的元素,数组c中包含那些a中但不在b中的元素,并输出数组c各元素的值 main() { int a[8],b[5],i,j,count; 【1】 for(i=0;i<8;i++) 【2】 for(i=0;i<5;i 阅读全文
posted @ 2023-02-14 11:33 myrj 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 如何把更改的驱动器图标改成默认图标?在驱动器的根目录下找到 desktop.ini (是一个隐藏文件),删除这个文件,驱动器的图标就变回默认的了。 阅读全文
posted @ 2023-02-13 19:24 myrj 阅读(94) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> main() { float s=1,pi=0,i=1.0,n=1.0; while(fabs(i)>=1e-6) { pi+=i; n=n+2; s=-s; i=s/n; } pi=4*pi; printf("pi的值是:% 阅读全文
posted @ 2023-02-13 11:32 myrj 阅读(215) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> main() { int shu[10]={0},su,max[2]; while((su=getchar())!='\n') shu[su-48]++; for(su=1,max[1]=0;su<10;su++) if(shu[su]>=max[1]) max[ 阅读全文
posted @ 2023-02-13 11:16 myrj 阅读(940) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { int n,a,b=0,c; scanf("%d",&n); printf("%d=1*",n); for(a=2;a<n;a++) {c=0; if(n%a==0) printf("%d",a),b++,c=1; if(b%2==1&& c= 阅读全文
posted @ 2023-02-13 07:19 myrj 阅读(60) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> main() { int n; while(~scanf("%d",&n)) { printf("%d\n",n); if(n==0) break; } getchar(); } 阅读全文
posted @ 2023-02-13 06:07 myrj 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int m,i,count=0;//定义一个正整数m,因子i,因子计数count,刚开始因子为0; printf("请输入一个正整数:\n"); scanf("%d",&m); for(i=1;i<=m;i++)//用for循环来从1因子 阅读全文
posted @ 2023-02-13 06:00 myrj 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 181 下一页