Jump to content
Fórum Script Brasil
  • 0

Duvida. (ERRO)


Eduardo Maia

Question

#include <stdio.h>
#include <conio.h>

main (){
     float peso [10], MD, MA;
     entrada (peso);
     MD=media(peso);
     MA=maior(peso);
     saida(ma,md);
     getch();
     }
     
void entrada (float P[]){
     for int a=0;a<10;a++){
         printf ("Digite um peso: ");
         scanf ("%f", &P[a]);
         }
}

float media (float P[]){
      float S=0;
      for (int a=0;a<10;a++){
          S=S+P[a]
          }
      return (S/10);
}

float maior (float P[]){
      float AUX=0;
      AUX=P[0]
      for (int a=0;a<10;a++){
          if (P[a]>AUX){
                        AUX=P[a];
                        P=a;
                        }
          }
          return P[c];
void saida (float MD, float MA){
     printf ("media %f - maior %f", MD, MA);
}

Tipo da erro la na função entrada (peso);

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

já que voce não disse qual erro esta dando. Tente declarar os protótipos das funções que voce fez....desta maneira

#include <stdio.h>
#include <conio.h>

  void entrada (float P[]); //protótipo da função entrada
  float media (float P[]);  //protótipo da função media
  float maior (float P[]);  //protótipo da função maior
  void saida (float MD, float MA); //protótipo da função saida

main (){
...
}
Funções...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...