摘要: 行驶方向:从合肥到郑州 G95 高速公路名称86:86公里处表示148公里加900米处 S3500高速公路46公里100米处 阅读全文
posted @ 2023-01-18 17:58 myrj 阅读(224) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int zs(int n) { int a; for(a=2;a<n;a++) if(n%a==0) return 0; return 1; } main() { int a,b,c=0; scanf("%d",&a); for(b=a-1;b>=2;b--) 阅读全文
posted @ 2023-01-18 15:44 myrj 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> main() { char zf[100],ch; int a,b=0,c; gets(zf); c=strlen(zf); if(c!=11 || zf[0]!='1') b=1; for(a=0;a<11;a++) { 阅读全文
posted @ 2023-01-18 15:16 myrj 阅读(317) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> float fh(int n) { if(n==1) return 1; else return 1/(n-1+1/fh(n-1)); } main() { float aa=0; int a,b; for(a=1;fh(a)>=0.001;a++) //pri 阅读全文
posted @ 2023-01-18 15:01 myrj 阅读(123) 评论(0) 推荐(0) 编辑