Advertisement
MarceloSousa

Problema com a Parametrização e Vetor

Nov 1st, 2013
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.51 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <locale.h>
  3. #include <stdio.h>
  4.    
  5.     int i=0,max=3;
  6.    
  7.     int maior (int);
  8.     int main (void){
  9.     setlocale(LC_ALL,"portuguese");
  10.    
  11.         int m=0, n[3];
  12.        
  13.         for(i=1;i<=3;i++){
  14.             printf("Digite o %iº número: \n",i);
  15.             scanf("%i",&n[i]);}
  16.            
  17.         m=maior(n[3]);
  18.         printf("\nO maior número é: %i\n\n\n",m);
  19.        
  20.     system("pause");
  21.     return 0;
  22.     }
  23.    
  24.     int maior (int n2[3]){
  25.             int maior=0;
  26.            
  27.         for(i=0;i<=3;i++){
  28.                
  29.             if(maior<n2[i])
  30.                 maior=n2[i];}
  31.    
  32.     return maior;
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement