当前位置: 代码迷 >> 综合 >> HDU 2090
  详细解决方案

HDU 2090

热度:81   发布时间:2023-12-15 11:50:49.0
#include <stdio.h>
int main() {char name[1000];double price=0.00,total=0.00,count = 0.00;while(scanf("%s %lf %lf",name,&count,&price) !=EOF ){total = total +(count*price);}printf("%0.1lf\n",total);return 0;
}

这个题虽然是水题却wa好久,结果一看才发现是printf写在while里了,引以为戒。