杭电 2090 算菜价

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

解题思路:将每一种菜价还有其重量相乘就可以了。

反思:其实最开始做的时候,我想的是怎样才能像题目里面那样输入数据,又没有限定输入多少组,我怎么知道在哪一组停止输入,开始输出结果,然后在VC里面像下面这样写,居然通过了------不懂-----

#include<stdio.h>
int main()
{
	char c[1000];
	double  a,b;
	double sum=0;
	while(scanf("%s %lf %lf",&c,&a,&b)!=EOF)
	{
		sum+=a*b;
	}
	printf("%.1lf\n",sum);
}

  

时间: 2024-10-05 09:29:36

杭电 2090 算菜价的相关文章

HDU 2090 算菜价 --- 水题

/* HDU 2090 算菜价 --- 水题 */ #include <cstdio> int main() { char s[105]; double a, b, sum = 0; while (scanf("%s", s)==1){ scanf("%lf%lf", &a, &b); a *= b; sum += a; } printf("%.1f\n", sum); return 0; }

杭电OJ -- 2090 算菜价

#include <iostream> #include <string> #include <iomanip> using namespace std; int main() { string name_of_food; double num, unit_price; double sum = 0; while (cin >> name_of_food) { cin >> num >> unit_price; sum += num

杭电2090

1 //这题是有多水....... 2 #include<stdio.h> 3 char s[100]; 4 int main() 5 { 6 double n,price,sum=0; 7 while(~scanf("%s%lf%lf",s,&n,&price)) 8 sum+=n*price; 9 printf("%.1lf\n",sum); 10 }

hdu 2090 算菜价

代码: #include<cstdio> #include<cmath> using namespace std; int main() { char str[100]; double p,q; double ans=0; while(~scanf("%s%lf%lf",str,&p,&q)) { ans=ans+p*q; } printf("%.1lf\n",ans);//自动会四舍五入 return 0; }

杭电oj

2031  进制转换 1 #include<stdio.h> 2 #include<string.h> 3 4 int main(){ 5 int n,i,r,x,j,flag; 6 int s[1000]; 7 while(scanf("%d %d",&n,&r)!=EOF){ 8 flag = 0; 9 if(n<0){flag=-1;n=-n;} 10 i = 0; 11 while(n>0){ 12 x = n%r; 13 s

杭电ACM分类

杭电ACM分类: 1001 整数求和 水题1002 C语言实验题——两个数比较 水题1003 1.2.3.4.5... 简单题1004 渊子赛马 排序+贪心的方法归并1005 Hero In Maze 广度搜索1006 Redraiment猜想 数论:容斥定理1007 童年生活二三事 递推题1008 University 简单hash1009 目标柏林 简单模拟题1010 Rails 模拟题(堆栈)1011 Box of Bricks 简单题1012 IMMEDIATE DECODABILITY

杭电ACM2092--整数解

杭电ACM2092--整数解    分析 http://acm.hdu.edu.cn/showproblem.php?pid=2092 一个YES,一个Yes.试了10几次..我也是无语了..哪里都不错的.... 很简单,用2次求根公式求出其中一个的值,然后判断是否为整数    if (x == int(x) ). 或者  用最直接的方法,从-m到m挨个算.有意结果时停止. 源码: #include <stdio.h> #include <math.h> int main() {

杭电 1242 Rescue(广搜)

http://acm.hdu.edu.cn/showproblem.php?pid=1242 Rescue Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 15597    Accepted Submission(s): 5663 Problem Description Angel was caught by the MOLIGPY!

魔咒词典------HDOJ杭电1880(字符串的处理,很简单)

Problem Description 哈利波特在魔法学校的必修课之一就是学习魔咒.据说魔法世界有100000种不同的魔咒,哈利很难全部记住,但是为了对抗强敌,他必须在危急时刻能够调用任何一个需要的魔咒,所以他需要你的帮助. 给你一部魔咒词典.当哈利听到一个魔咒时,你的程序必须告诉他那个魔咒的功能:当哈利需要某个功能但不知道该用什么魔咒时,你的程序要替他找到相应的魔咒.如果他要的魔咒不在词典中,就输出"what?" Input 首先列出词典中不超过100000条不同的魔咒词条,每条格式