摘要: #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-05 15:21 韵文 阅读(121) 评论(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-05 14:54 韵文 阅读(115) 评论(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",a,x); return 0;}int f(){ int x=4; return x;} 阅读全文
posted @ 2013-10-05 14:24 韵文 阅读(93) 评论(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-05 12:18 韵文 阅读(135) 评论(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-05 11:17 韵文 阅读(100) 评论(0) 推荐(0) 编辑