摘要: #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-03 10:59 zhaoyang16 阅读(152) 评论(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; case'0':case'1':case'2':case'3':case'4 阅读全文
posted @ 2013-10-03 10:57 zhaoyang16 阅读(117) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ int choice,i; double price; for(i=1;i<=5;i++){ printf("[1]Select crisps\n"); printf("[2]Select popcorn\n"); printf("[3]Select chocolate\n"); printf("[4]Select cola\n"); printf("[0]exit\n"); printf("Enter choice:") 阅读全文
posted @ 2013-10-03 10:56 zhaoyang16 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ double value1,value2; char op; printf("Type in a impression:"); scanf("%lf%lf",&value1,&op,&value2); switch(op){ case'+': printf("=%.2f\n",value1+value2); break; case'-': printf("%.2f\n",value1-value2); break 阅读全文
posted @ 2013-10-03 10:55 zhaoyang16 阅读(144) 评论(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( 阅读全文
posted @ 2013-10-03 10:54 zhaoyang16 阅读(156) 评论(0) 推荐(0) 编辑
摘要: # includeint main(void){ int digit,letter,other; char ch; int i; digit=letter=other=0; printf("Enter 10 characters:"); for(i=1;i='a'&&ch='0'&&ch<='9') digit++; } printf("letter=%d,digit=%d,other=%d\n",letter,digit,other); return 0;} 阅读全文
posted @ 2013-10-03 10:53 zhaoyang16 阅读(121) 评论(0) 推荐(0) 编辑
摘要: # includeint main(void){ double x,y; printf("Enter x:"); scanf("%lf",&x); if(x<0){ y=0; } else if(x<=15){ y=4*x/3; } else{ y=2.5*x-10.5; } printf("f(%.2f)=%.2f\n",x,y); return 0;} 阅读全文
posted @ 2013-10-03 10:51 zhaoyang16 阅读(126) 评论(0) 推荐(0) 编辑
摘要: #includeint main(void){ int count,i,n; double grade,total; printf("Enter n:"); scanf("%d",&n); total=0; count=0; for(i=1;i<=n;i++){ printf("Enter grade#%d:",i); scanf("%dlf",&grade); total=total+grade; if(grade<60){ count++; } } printf("Grad 阅读全文
posted @ 2013-10-03 10:50 zhaoyang16 阅读(134) 评论(0) 推荐(0) 编辑