Guest User

Untitled

a guest
Nov 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.  
  5. int nbk, poids, age, l_corne, h_garrot, note;
  6.  
  7. scanf("%d", &nbk);
  8.  
  9. for(int i = 1; i<=nbk; i++){
  10.  
  11. scanf("%d", &poids);
  12. scanf("%d", &age);
  13. scanf("%d", &l_corne);
  14. scanf("%d", &h_garrot);
  15.  
  16. note = l_corne*h_garrot+poids;
  17. printf("%d\n", note);
  18. }
  19. }
Add Comment
Please, Sign In to add comment