jordanov

funkcii ##najgolem element

Dec 18th, 2015
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.48 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. //Se cita edno n, posle toa citame vo narednite n linii trojki od broevi.Za sekoja trojka da se ispecati najgolemiot element.
  4.  
  5. int maxi(int x, int y, int z)
  6. {
  7.     if(x<y)
  8.     {
  9.         x=y;
  10.     }
  11.     if(x<z)
  12.     {
  13.         x=z;
  14.     }
  15.     return x;
  16. }
  17.  
  18. int main()
  19. {
  20.     int n,i,x,y,z;
  21.     scanf("%d ", &n);
  22.     for(i=0;i<n;i++)
  23.     {
  24.         scanf("%d%d%d", &x, &y, &z);
  25.         printf("%d ", maxi(x,y,z));
  26.     }
  27.     return 0;
  28. }
Add Comment
Please, Sign In to add comment