Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdlib.h>
- #include <locale.h>
- #include <stdio.h>
- int i=0,max=3;
- int maior (int);
- int main (void){
- setlocale(LC_ALL,"portuguese");
- int m=0, n[3];
- for(i=1;i<=3;i++){
- printf("Digite o %iº número: \n",i);
- scanf("%i",&n[i]);}
- m=maior(n[3]);
- printf("\nO maior número é: %i\n\n\n",m);
- system("pause");
- return 0;
- }
- int maior (int n2[3]){
- int maior=0;
- for(i=0;i<=3;i++){
- if(maior<n2[i])
- maior=n2[i];}
- return maior;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement