我有以下代码:
#include <stdio.h>
int main()
{
int hours;
float check, phw;
printf("How many hours worked?");
scanf(" %d", &hours);
printf("How much do you make an hour?");
scanf(" %2f", &phw);
check = phw * (float)hours;
printf("You have made $%.2f\n", check);
return 0;
}
进入
时工作了几个小时? 24
你一小时赚多少钱? 7.79
我希望它出现在186.96
,但我得到了:
你赚了168.00美元
程序以退出代码结束:0
我不知道自己做错了什么,我刚开始学习C所以感谢任何帮助。