POJ 2017
#include<iostream> #include<stdio.h> using namespace std; int main() { //freopen("test.txt","r",stdin); int sum; int num; int temp; while(1){ cin>>num; if(num == -1) break; temp = 0; sum = 0; while(num--) { int v; int t; cin>>v; cin>>t; sum += v * (t - temp); temp = t; } cout<<sum<<" miles"<<endl; } }
关注我的公众号,当然,如果你对Java, Scala, Python等技术经验,以及编程日记,感兴趣的话。
技术网站地址: vmfor.com