Speed Limit(水题)

Bill and Ted are taking a road trip. But the odometer in their car is broken, so they don't know how many miles they have driven. Fortunately, Bill has a working stopwatch, so they can record their speed and the total time they have driven. Unfortunately, their record keeping strategy is a little odd, so they need help computing the total distance driven. You are to write a program to do this computation.

For example, if their log shows

Speed in miles per hour Total elapsed time in hours
20 2
30 6
10 7

this means they drove 2 hours at 20 miles per hour, then 6-2=4 hours at 30 miles per hour, then 7-6=1 hour at 10 miles per hour. The distance driven is then (2)(20) + (4)(30) + (1)(10) = 40 + 120 + 10 = 170 miles. Note that the total elapsed time is always since the beginning of the trip, not since the previous entry in their log.

Input

The input consists of one or more data sets. Each set starts with a line containing an integer n, 1 ≤ n ≤ 10, followed by n pairs of values, one pair per line. The first value in a pair, s, is the speed in miles per hour and the second value, t, is the total elapsed time. Both s and t are integers, 1 ≤ s ≤ 90 and 1 ≤ t ≤ 12. The values for t are always in strictly increasing order. A value of -1 for n signals the end of the input.

Output

For each input set, print the distance driven, followed by a space, followed by the word "miles".

Example input: Example output:

3 #170 miles
20 2 #180 miles
30 6 # 90 miles
10 7
2
60 1
30 5
4
15 1
25 2
30 3
10 5
-1

Source: Mid-Central USA 2004
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2176

我的代码

#include <stdio.h>

int main(){
int n,i,sum,j;
int a[10][2]={{0,0}};
while(scanf("%d",&n) != EOF){
    if(n == -1) return 0;
    sum = 0;
    i = 0;
    if(n<=10 && n>=1){
        while(n--){
            scanf("%d %d",&a[i][0],&a[i][1]);
            i++;
        }
        int k=0;
        for(j=0;j<i;j++){
            sum += a[j][0] * (a[j][1]-k) ;
            k = a[j][1];
        }
        printf("%d miles\n",sum);
    }
}

return 0;
}

sum,i,j,k等变量要在循环体内定义初始值,避免上一轮循环改变变量的值使得下一轮循环结果错误

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,461评论 0 10
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,984评论 0 23
  • 26岁,我妈看到是个年轻小伙都像她女婿。 七大姑八大姨介绍的男生各种各样,奇形怪状。 感觉自己年龄不算很大,在家人...
    穿靴子的猫0213阅读 517评论 0 0
  • 人要么活的一直顺下去,要么懂得凡事物极必反,一直活的太顺,是不可能的,生活往往这样:在你感觉到自己活的太顺,上帝会...
    任小言阅读 356评论 0 0
  • 放逐思念的浮云 彈指間 輾轉了你兩千年的容顔 天帝羞言的滄桑 叮嚀你苦難的華夏族人 奸惡,腐朽在天...
    拷贝作者阅读 185评论 1 10