0分全 WA 可能原因:printf("%d\n",floor(s / 100)); floor 的返回值还是 double,所以要强转 int
printf("%d\n",floor(s / 100));