摘要:
#include#includeint main(void){ int count,m; int prime(int m); count=0; for(m=2;m<=100;m++){ if(prime(m) !=0){ printf("%6d",m); count++; if(count%10==0) printf("\n"); } } printf("\n");}int prime(int m){ int i,n; if(m=... 阅读全文
posted @ 2013-10-05 23:19
shadowtly
阅读(67)
评论(0)
推荐(0)
摘要:
#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)
摘要:
#includedouble fact(int n);int main(void){ int i; double sum; sum = 0; for(i=1;i<=100;i++) sum=sum+fact(i); printf("1!+2!+...+100!=%e\n",sum);return 0;}double fact(int n){ int i; double result; result=1; for(i=1;i<=n;i++) result=result*i; return result;} 阅读全文
posted @ 2013-10-05 17:48
shadowtly
阅读(84)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int mynumber=38; int count=0,yournumber; for(count = 1;countmynumber) printf("Sorry! your number is bigger than my number!\n"); else printf("Sorry! your number is smaller than my number!\n"); } printf("Game is over!\n");... 阅读全文
posted @ 2013-10-05 17:40
shadowtly
阅读(103)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int i,m; printf("Enter a number:"); scanf("%d",&m); for(i=2;im/2 && m!=1) printf("%d is a prime number!\n",m); else printf("No!\n"); return 0;} 阅读全文
posted @ 2013-10-05 17:27
shadowtly
阅读(90)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int count,number; count=0; printf("Enter a number:"); scanf("%d",&number); if(number<0)number=-number; do{ number=number/10; count++; }while(number !=0); printf("It contains %d digits.\n",count); return 0;} 阅读全文
posted @ 2013-10-05 12:44
shadowtly
阅读(101)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int count,num; double grade,total; num=0; total=0; count=0; printf("Enter grades:"); scanf("%lf",&grade); while(grade>=0){ total=total+grade; num++; if(grade<60) count++; scanf("%lf",&grade); } if(num !=0){ ... 阅读全文
posted @ 2013-10-05 12:37
shadowtly
阅读(120)
评论(0)
推荐(0)
摘要:
#include#includeint main(void){ int denominator,flag; double item,pi; flag=1; denominator=1; item=1.0; pi=0; while(fabs(item)>=0.0001){ item=flag*1.0/denominator; pi=pi+item; flag=-flag; denominator=denominator+2; } pi=pi*4; printf("pi=%0.4f\... 阅读全文
posted @ 2013-10-05 12:24
shadowtly
阅读(115)
评论(0)
推荐(0)
摘要:
#includeint main(void){ double value1,value2; char op; printf("Type in an expression:"); scanf("%lf%c%lf",&value1,&op,&value2); if(op=='+') printf("=%.2f\n",value1+value2); else if(op=='-') printf("=%.2f\n",value1-value2); else if(o 阅读全文
posted @ 2013-10-05 12:13
shadowtly
阅读(118)
评论(0)
推荐(0)
摘要:
#includeint main(void){ int blank,digit,other; char ch; int i; blank=digit=other=0; printf("Enter 10 characters:"); for(i=1;i<=10;i++){ ch=getchar(); switch (ch){ case' ': case'\n': blank++; break; ... 阅读全文
posted @ 2013-10-05 11:55
shadowtly
阅读(130)
评论(0)
推荐(0)

浙公网安备 33010602011771号