摘要:
5-8#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 ca... 阅读全文
posted @ 2013-10-05 14:33
鲍。
阅读(134)
评论(0)
推荐(0)
摘要:
5-5#includeint main(void){ void pyramid(int n); pyramid(5); return 0;}void pyramid(int n){ int i,j; for(i=1;ifloat 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... 阅读全文
posted @ 2013-10-05 13:05
鲍。
阅读(178)
评论(0)
推荐(0)