Advertisement
rdsedmundo

Tacografo.c

Jan 9th, 2014
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.27 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int n, i;
  5.     scanf("%d", &n);
  6.  
  7.     int dist_total = 0;
  8.  
  9.     for(i = 0; i < n; i++) {
  10.         int T, V;
  11.         scanf("%d %d", &T, &V);
  12.  
  13.         dist_total += V * T;
  14.     }
  15.  
  16.     printf("%d\n", dist_total);
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement