浮点数减法结果不准确

img

#include <stdio.h>
int main()
{
float 金额 = 0;
printf("请输入金额");
scanf_s("%f", &金额);
float 找钱 = 100 - 金额;
printf("找您%f元" ,找钱);
}