void menu(void)
{
printf("Enter the operation of your choice:\n");
printf("a. add s. subtract\n");
printf("m. multiply d. divide\n");
printf("q. quit\n");
}
printf("Enter first number: ");
op1=get_float();
printf("Enter second number: ");
op2=get_float();
while((op=='d' || op=='s') && op2==0)
{
printf("Enter a number other than 0: ");
op2=get_float();
}
operate(op1,op2,op);
}
float get_float(void)
{
float f;
int ch;
while(scanf("%f",&f)!=1)
{
while((ch=getchar())!='\n')
putchar(ch);
printf(" is not an number.\n");
printf("Please enter a number,such as 2.5,-1.78E8,or 3: ");
}
return f;
}
void operate(float op1,float op2,char op)
{
switch(op)
{
case 'a' : printf("%.2f + %.2f = %.2f\n",op1,op2,op1+op2);
break;
case 's' : printf("%.2f - %.2f = %.2f\n",op1,op2,op1-op2);
break;
case 'm' : printf("%.2f * %.2f = %.2f\n",op1,op2,op1*op2);
break;
case 'd' : printf("%.2f / %.2f = %.2f\n",op1,op2,op1/op2);
break;
default : printf("there must be some error!\n");
break;
}
}作者: pmerofc 时间: 2012-07-27 11:28
提示: 作者被禁止或删除 内容自动屏蔽作者: pmerofc 时间: 2012-07-27 11:29
提示: 作者被禁止或删除 内容自动屏蔽作者: xiaowh00 时间: 2012-07-27 11:29
Write a program that shows you a menu offering you the choice of addition, subtraction, multiplication, or division. After getting your choice, the program asks for two numbers, then performs the requested operation. The program should accept only the offered menu choices. It should use type float for the numbers and allow the user to try again if he or she fails to enter a number. In the case of subtraction, the program should prompt the user to enter a new value if 0 is entered as the value for the second number. A typical program run should look like this:
Enter the operation of your choice:
a. add s. subtract
m. multiply d. divide
q. quit
a
Enter first number: 22.4
Enter second number: one
one is not an number.
Please enter a number, such as 2.5, -1.78E8, or 3: 1