摘要: #includeint main(void){ int i; int fib[10]={1,1}; for(i=2;i<10;i++) fib[i]=fib[i-1]+fib[i-2]; for(i=0;i<10;i++){ printf("%6d",fib[i]); if((i+1)%5==0) printf("\n"); } return 0;} 阅读全文
posted @ 2013-10-06 23:44 执于一念 阅读(72) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ int count[9]; int i,response; for(i=1;i8) printf("thia is a bad response:%d\n",response); else count[response]++; } printf("result:\n"); for(i=1;i<=8;i++) printf("%4d%4d\n",i,count[i]); return 0;} 阅读全文
posted @ 2013-10-06 23:36 执于一念 阅读(88) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ char ch; printf("input characters:"); ch=getchar(); while(ch!='\n'){ if(ch>='A'&&ch='a'&&ch<='z') ch=ch-'a'+'A'; putchar(ch); ch=getchar(); } return 0;} 阅读全文
posted @ 2013-10-06 23:23 执于一念 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ char ch='w'; int a=2,b=0,c=0; float x=3.0; printf("%d ",a&&b); printf("%d ",a||b&&c); printf("%d ",!a&&b); printf("%d ",a||3+10&&2); printf("%d ",!(x==2)); printf("%d ",!x==2); 阅读全文
posted @ 2013-10-06 23:16 执于一念 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ char ch='w'; int a=2,b=3,c=1,d,x=10; printf("%d",a>b==c); printf("%d",d=a>b); printf("%d",ch>'a'+1); printf("%d",d=a+b>c); printf("%d",b-1==a!=c); printf("%d\n",3<=x<=5); return 0;} 阅读全文
posted @ 2013-10-06 23:06 执于一念 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ int i; char ch_lower,ch_upper; for(i=1;i='a'&&ch_lower%d\n",ch_lower,ch_upper,ch_upper%10); } return 0;} 阅读全文
posted @ 2013-10-06 22:53 执于一念 阅读(83) 评论(0) 推荐(0) 编辑
摘要: #includedouble fact_s(int n);int main(void){ int i,n; printf("Input n:"); scanf("%d",&n); for(i=1;i<=n;i++) printf("%3d!=%.0f\n",i,fact_s(i)); return 0;}double fact_s(int n){ static double f=1; f=f*n; return f;} 阅读全文
posted @ 2013-10-06 22:40 执于一念 阅读(84) 评论(0) 推荐(0) 编辑
摘要: #includefloat cash;int main(void){ int choice; float value; void income(float number),expend(float number); cash=0; printf("Enter operate choice(0--end,1--income,2--expend):"); scanf("%d",&choice); while(choice!=0){ if(choice==1||choice==2){ printf("Enter cash ... 阅读全文
posted @ 2013-10-06 22:12 执于一念 阅读(84) 评论(0) 推荐(0) 编辑
摘要: #includeint x;int f();int main(void){ int a=1; x=a; a=f(); { int b=2; b=a+b; x=x+b; } printf("%d %d\n",a,x); return 0;}int f(){ int x=4; return x;} 阅读全文
posted @ 2013-10-06 21:59 执于一念 阅读(84) 评论(0) 推荐(0) 编辑
摘要: #includefloat result_real,result_imag;int main(void){ float imag1,imag2,real1,real2; void complex_prod(float real1,float imag1,float real2,float imag2); void complex_add(float real1,float imag1,float real2,float imag2); printf("Enter 1st complex number (real and imaginary):"); scanf(" 阅读全文
posted @ 2013-10-06 21:51 执于一念 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ void pyramid(int n); pyramid(5); return 0;}void pyramid(int n){ int i,j; for(i=1;i<=n;i++){ for(j=1;j<=n-i;j++) printf(" "); for(j=1;j<=i;j++) printf(" %d ",i); putchar('\n'); }} 阅读全文
posted @ 2013-10-06 21:35 执于一念 阅读(77) 评论(0) 推荐(0) 编辑
摘要: #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; ... 阅读全文
posted @ 2013-10-06 21:26 执于一念 阅读(72) 评论(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; whil... 阅读全文
posted @ 2013-10-06 20:59 执于一念 阅读(109) 评论(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,doubl 阅读全文
posted @ 2013-10-06 20:50 执于一念 阅读(84) 评论(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-06 20:31 执于一念 阅读(91) 评论(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-06 20:27 执于一念 阅读(124) 评论(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("%4d",x); x1=x2; x2=x; } printf("\n"); return 0;} 阅读全文
posted @ 2013-10-06 20:16 执于一念 阅读(76) 评论(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-06 17:32 执于一念 阅读(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-06 00:04 执于一念 阅读(85) 评论(0) 推荐(0) 编辑