10楼的好象是我想要的答案
从那里起飞,从那里降落!
#include"stdio.h"
main()
{
float a,c;
char b,x;
while (1)
{
printf ("input suanshi:\n");
scanf("%f%c%f",&a,&b,&c);
switch(b)
{
case '+':printf("%.2f",a+c);break;
case '-':printf("%.2f",a-c);break;
case '*':printf("%.2f",a*c);break;
case '/':printf("%.2f",a/c);break;
}
getchar();
printf("\nPress 'Q' to end:"); /* 按任意键 继续 */
scanf("%c",&x);
if (x=='q'||x=='Q') return ;}
getch();
}
是这样吗?~~
赞OK