Tanky WooRSS

HDOJ 2090 算菜价

27 Jul 2010
这篇博客是从旧博客 WordPress 迁移过来,内容可能存在转换异常。

题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=2090

水题~~~

 // Accepted 2090 0MS 280K 379 B 
// Author: Tanky Woo
// HDOJ 2090
#include 
#include 
using namespace std;

typedef struct food
{
    string green;
    double num;
    double money;
}Food;
Food food[1000];
int main()
{
    int cnt = 0;
    double sum = 0.0;
    while(cin >> food[cnt].green >> food[cnt].num >> food[cnt].money)
    {
        sum += food[cnt].num*food[cnt].money;
        cnt++;
    }
    printf("%.1lf\n", sum);
    return 0;

}