根据内容编的程序,请大家来找茬!!
一个产品有两个版本,一个高级,5.5元,标准3.5元。提示用户输入产品版本和数量 ,然后根据输入的信息,算出价格。 #include <stdio.h>
int main(void)
{
enum mobel{good,bad};
float good =5.5;
float bad =3.5;
float pirce = 0.0f;
int num =0;
printf("Please enter the mobel\"good or bad\" and the number of book!");
scanf("%c",&mobel);
scanf("%d",&num);
pirce = mobel * num;
printf("You choose mobel is %c,the number is %d,and the price is %.2f\n",mobel,num,pirce);
return 0;
}
这个是我根据内容来编的程序,请大家来找茬!!