Exercicios Comp
}
Função.h
#ifndef FUNCAO_H
#define FUNCAO_H void pi (int x); void esfera(double r); void circulo ( double d);
#endif
Função.cpp
#include "funcao.h"
#include <iostream>
#include <cmath> using namespace std; void pi (int x)
{ if (x%2==0) cout<<"O numero inteiro eh PAR"<<endl; else cout<<"O numero inteiro eh IMPAR"<<endl;
}
void esfera( double r)
{
double A;
A=4.0*M_PI *r*r; cout<<"A area da esfera eh: "<<A<<endl;
}
void circulo ( double d)
{
double Ac;
Ac=(M_PI*d*d)/4.0;
cout<<"A area eh: "<<Ac<<endl;
}
cout<<"Informe o valor do diametro "; cin>>d; circulo(d); system("PAUSE"); return EXIT_SUCCESS;
}
Função.h
#ifndef FUNCAO_H
#define FUNCAO_H void pi (int x); void esfera(double r); void circulo ( double d);
#endif
Função.cpp
#include "funcao.h"
#include <iostream>
#include <cmath> using namespace std; void pi (int x)
{ if (x%2==0) cout<<"O numero inteiro eh PAR"<<endl; else cout<<"O numero inteiro eh IMPAR"<<endl;
}
void esfera( double r)
{
double A;
A=4.0*M_PI *r*r; cout<<"A area da esfera eh: "<<A<<endl;
}
void circulo ( double d)
{
double Ac;
Ac=(M_PI*d*d)/4.0;
cout<<"A area eh: "<<Ac<<endl;
}
cout<<"Informe o valor do diametro "; cin>>d; circulo(d); system("PAUSE"); return EXIT_SUCCESS;
}
Função.h
#ifndef FUNCAO_H
#define FUNCAO_H void pi (int x); void esfera(double r); void circulo ( double d);
#endif
Função.cpp
#include "funcao.h"
#include <iostream>
#include <cmath> using namespace std; void pi (int x)
{ if (x%2==0) cout<<"O numero inteiro eh PAR"<<endl; else cout<<"O numero inteiro eh IMPAR"<<endl;
}
void esfera( double r)
{
double A;
A=4.0*M_PI *r*r; cout<<"A area da esfera eh: "<<A<<endl;
}
void circulo ( double d)
{
double Ac;
Ac=(M_PI*d*d)/4.0;
cout<<"A area eh: "<<Ac<<endl;
}
cout<<"Informe o valor do diametro "; cin>>d; circulo(d); system("PAUSE"); return EXIT_SUCCESS;
}
Função.h
#ifndef FUNCAO_H
#define FUNCAO_H void pi (int x); void esfera(double r);