Jump to content
Fórum Script Brasil
  • 0

INICIANTE EM C


Bran_Stark

Question

Estou tentando compilar um programinha que montei aqui mas ele ta dando um erro.

alguém com experiencia poderia me ensinar a resolver.

Na Linha 9 ele aparece um erro de espectativa de expressão.

/*PROGRAMA PARA CALCULAR ÁREA DO CIRCULO*/

#include<stdio.h>

#define PI = 3.1415

float processa( float r)

{

float (a);

a=PI*r*r;

return(a);

}

main()

{

float area, raio;

printf("Raio = ?");

scanf("%f",&raio);

area = processa (raio);

printf("Area=%f", area);

}

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Tente isso:

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


  float processa(float r)
  {
    float a;
    a=(3.14*r*r);
    return a;
  }

  main(){

   float area, raio;
   
   printf("Raio:");
   scanf("%f",&raio);
   area = processa (raio);
   printf("Area=%.2f\n", area);
   
   system("pause");
}

Edited by Binder
Link to comment
Share on other sites

  • 0

Aqui está outro!

#include <stdio.h>
#include <stdlib.h>

main() {
       float raio, perimetro;
       double Pi = 3.1415927, area;
       printf("Introduza o Raio da Circuferencia: ");
       scanf("%f", &raio);
       area = Pi * raio * raio;
       perimetro = 2 * Pi * raio;
       
       printf("Area = %f\nPerimetro = %f", area, perimetro);
       getch();
       }

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...