摘要:
#include#includeint main(void){ double e,pi; double funpi(double e); printf("Enter e:"); scanf("%lf",&e); pi=funpi(e); printf("pi=%f\n",pi); return 0;}double funpi(double e){ int denominator,flag; double item,sum; flag = 1; denominator = 1; item = 1.0; sum = 0;... 阅读全文
posted @ 2013-10-05 22:28
shadowtly
阅读(110)
评论(0)
推荐(0)
摘要:
#includeint main(void){ double height,radius,volume; double cylinder(double r,double h); printf("Enter radius and height:"); scanf("%lf%lf",&radius,&height); volume = cylinder(radius,height); printf("Volume=%.3f\n",volume); return 0;}double cylinder(double r,dou 阅读全文
posted @ 2013-10-05 22:16
shadowtly
阅读(125)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int child,women,men; for(men=0;men<=15;men++) for(women=0;women<=22;women++){ child=45-women-men; if(men*3+women*2+child*0.5==45) printf("men=%d,women=%d,child=%d\n",men,women,child); } return 0;} 阅读全文
posted @ 2013-10-05 22:08
shadowtly
阅读(93)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int child,men,women; for(men=0;men<=45;men++) for(women=0;women<=45;women++) for(child=0;child<=45;child++) if(men+women+child==45 && men*3+women*2+child*0.5==45) printf("men=%d,women=%d,child=%d\n",men,women,child); ... 阅读全文
posted @ 2013-10-05 21:58
shadowtly
阅读(80)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int i,x1,x2,x; x1=1; x2=1; printf("%6d%6d",x1,x2); for(i=1;i<=8;i++){ x=x1+x2; printf("%6d",x); x1=x2; x2=x; } printf("\n"); return 0;} 阅读全文
posted @ 2013-10-05 21:53
shadowtly
阅读(107)
评论(0)
推荐(0)
摘要:
#include#includeint main(void){ int count,i,m,n; count=0; for(m=2;mn){ printf("%6d",m); count++; if(count % 10==0) printf("\n"); } } printf("\n"); return 0;} 阅读全文
posted @ 2013-10-05 21:45
shadowtly
阅读(90)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int x; printf("Enter x:"); scanf("%d",&x); while(x !=0){ printf("%d",x%10); x =x/10; } return 0;} 阅读全文
posted @ 2013-10-05 21:38
shadowtly
阅读(114)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int mark,max; printf("Enter marks:"); scanf("%d",&mark); max = mark; while(mark>=0){ if(max < mark) max = mark; scanf("%d",&mark); }; printf("Max=%d\n",max); return 0;} 阅读全文
posted @ 2013-10-05 21:33
shadowtly
阅读(81)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int i,mark,max,n; printf("Enter n:"); scanf("%d",&n); printf("Enter %d marks:",n); scanf("%d",&mark); max=mark; for(i=1;i<n;i++){ scanf("%d",&mark); if(max<mark) max=mark; } printf("Max=%d\n",max); 阅读全文
posted @ 2013-10-05 21:12
shadowtly
阅读(119)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int i,j; double item,sum; sum = 0; for(i = 1;i<=100;i++){ item = 1; for(j = 1;j<=i;j++) item=item*j; sum=sum+item; } printf("1!+2!+...+100!=%e\n",sum); return 0;} 阅读全文
posted @ 2013-10-05 21:07
shadowtly
阅读(114)
评论(0)
推荐(0)

浙公网安备 33010602011771号