Ybadoo - Soluções em Software Livre
Tutoriais
Programação Orientada a Objetos

Desenvolva uma classe chamada Tetrahedron para representar um tetraedro, ou seja, um poliedro regular de quatro faces, considerado um dos cinco Sólidos Platônicos. A classe possui um único atributo denominado edge, do tipo double, que representa a aresta do tetraedro. O construtor da classe recebe como parâmetro a aresta do tetraedro, cujo valor deve ser maior ou igual a zero. A aresta do tetraedro pode ser obtida pelo usuário por meio do método getEdge(). A classe também apresenta os métodos area() e volume(), que retornam a área e o volume do tetraedro, respectivamente. A área de um tetraedro de aresta a é obtida pela fórmula √3 * a2. O volume de um tetraedro de aresta a é obtido pela fórmula √2 / 12 * a3.

 

Terminal

ybadoo@server:~$ ./application
Implementação na Linguagem de Programação Java Implementação na Linguagem de Programação C++
Diagrama de Classes na Linguagem de Programação Java Tetrahedron.java Application.java
Diagrama de Classes
Diagrama de Classes na Linguagem de Programação Java

Arquivo Tetrahedron.java

/*************************************************************************
 * Copyright (C) 2009/2024 - Cristiano Lehrer (cristiano@ybadoo.com.br)  *
 *                  Ybadoo - Solucoes em Software Livre (ybadoo.com.br)  *
 *                                                                       *
 * Permission is granted to copy, distribute and/or modify this document *
 * under the terms of the GNU Free Documentation License, Version 1.3 or *
 * any later version published by the  Free Software Foundation; with no *
 * Invariant Sections,  no Front-Cover Texts, and no Back-Cover Texts. A *
 * A copy of the  license is included in  the section entitled "GNU Free *
 * Documentation License".                                               *
 *                                                                       *
 * Ubuntu 16.10 (GNU/Linux 4.8.0-39-generic)                             *
 * OpenJDK Version "1.8.0_121"                                           *
 * OpenJDK 64-Bit Server VM (build 25.121-b13, mixed mode)               *
 *************************************************************************/

package com.ybadoo.tutoriais.poo.tutorial01.exercicio10;

/**
 * Classe responsavel pela representacao de um tetraedro
 */
public class Tetrahedron
{
  /**
   * Aresta do tetraedro
   */
  private double edge;

  /**
   * Construtor para inicializar a aresta do tetraedro
   *
   * @param edge aresta do tetraedro
   */
  public Tetrahedron(double edge)
  {
    if(edge >= 0.0)
    {
      this.edge = edge;
    }
    else
    {
      this.edge = 0.0;
    }
  }

  /**
   * Retornar a aresta do tetraedro
   *
   * @return aresta do tetraedro
   */
  public double getEdge()
  {
    return edge;
  }

  /**
   * Retornar a area do tetraedro
   *
   * @return area do tetraedro
   */
  public double area()
  {
    return Math.sqrt(3.0) * Math.pow(edge, 2.0);
  }

  /**
   * Retornar o volume do tetraedro
   *
   * @return volume do tetraedro
   */
  public double volume()
  {
    return Math.sqrt(2.0) / 12.0 * Math.pow(edge, 3.0);
  }
}

Arquivo Application.java

/*************************************************************************
 * Copyright (C) 2009/2024 - Cristiano Lehrer (cristiano@ybadoo.com.br)  *
 *                  Ybadoo - Solucoes em Software Livre (ybadoo.com.br)  *
 *                                                                       *
 * Permission is granted to copy, distribute and/or modify this document *
 * under the terms of the GNU Free Documentation License, Version 1.3 or *
 * any later version published by the  Free Software Foundation; with no *
 * Invariant Sections,  no Front-Cover Texts, and no Back-Cover Texts. A *
 * A copy of the  license is included in  the section entitled "GNU Free *
 * Documentation License".                                               *
 *                                                                       *
 * Ubuntu 16.10 (GNU/Linux 4.8.0-39-generic)                             *
 * OpenJDK Version "1.8.0_121"                                           *
 * OpenJDK 64-Bit Server VM (build 25.121-b13, mixed mode)               *
 *************************************************************************/

package com.ybadoo.tutoriais.poo.tutorial01.exercicio10;

import java.util.Scanner;

/**
 * Classe responsavel pela execucao da classe Tetrahedron
 */
public class Application
{
  /**
   * Construtor para inicializar a execucao da classe Tetrahedron
   */
  private Application()
  {

  }

  /**
   * Metodo principal da linguagem de programacao Java
   *
   * @param args argumentos da linha de comando (nao utilizado)
   */
  public static void main(String[] args)
  {
    Scanner scanner = new Scanner(System.in);

    System.out.print("Forneça o valor da aresta do tetraedro: ");

    double edge = scanner.nextDouble();

    scanner.close();

    Tetrahedron tetrahedron = new Tetrahedron(edge);

    System.out.print("A aresta do tetraedro é: ");
    System.out.println(tetrahedron.getEdge());

    System.out.print("A área do tetraedro é: ");
    System.out.println(tetrahedron.area());

    System.out.print("O volume do tetraedro é: ");
    System.out.println(tetrahedron.volume());
  }
}
Diagrama de Classes na Linguagem de Programação C++ Tetrahedron.hpp Tetrahedron.cpp Application.cpp makefile
Diagrama de Classes
Diagrama de Classes na Linguagem de Programação C++

Arquivo Tetrahedron.hpp

/*************************************************************************
 * Copyright (C) 2009/2024 - Cristiano Lehrer (cristiano@ybadoo.com.br)  *
 *                  Ybadoo - Solucoes em Software Livre (ybadoo.com.br)  *
 *                                                                       *
 * Permission is granted to copy, distribute and/or modify this document *
 * under the terms of the GNU Free Documentation License, Version 1.3 or *
 * any later version published by the  Free Software Foundation; with no *
 * Invariant Sections,  no Front-Cover Texts, and no Back-Cover Texts. A *
 * A copy of the  license is included in  the section entitled "GNU Free *
 * Documentation License".                                               *
 *                                                                       *
 * Ubuntu 16.10 (GNU/Linux 4.8.0-39-generic)                             *
 * g++ (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005                           *
 *************************************************************************/

#ifndef TETRAHEDRON_HPP
#define TETRAHEDRON_HPP

/**
 * Classe responsavel pela representacao de um tetraedro
 */
class Tetrahedron
{
  public:

  /**
   * Construtor para inicializar a aresta do tetraedro
   *
   * @param edge aresta do tetraedro
   */
  Tetrahedron(const double edge);

  /**
   * Retornar a aresta do tetraedro
   *
   * @return aresta do tetraedro
   */
  double getEdge() const;

  /**
   * Retornar a area do tetraedro
   *
   * @return area do tetraedro
   */
  double area() const;

  /**
   * Retornar o volume do tetraedro
   *
   * @return volume do tetraedro
   */
  double volume() const;

  private:

  /**
   * Aresta do tetraedro
   */
  double edge;
};

#endif

Arquivo Tetrahedron.cpp

/*************************************************************************
 * Copyright (C) 2009/2024 - Cristiano Lehrer (cristiano@ybadoo.com.br)  *
 *                  Ybadoo - Solucoes em Software Livre (ybadoo.com.br)  *
 *                                                                       *
 * Permission is granted to copy, distribute and/or modify this document *
 * under the terms of the GNU Free Documentation License, Version 1.3 or *
 * any later version published by the  Free Software Foundation; with no *
 * Invariant Sections,  no Front-Cover Texts, and no Back-Cover Texts. A *
 * A copy of the  license is included in  the section entitled "GNU Free *
 * Documentation License".                                               *
 *                                                                       *
 * Ubuntu 16.10 (GNU/Linux 4.8.0-39-generic)                             *
 * g++ (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005                           *
 *************************************************************************/

#include <cmath>

#include "Tetrahedron.hpp"

/**
 * Construtor para inicializar a aresta do tetraedro
 *
 * @param edge aresta do tetraedro
 */
Tetrahedron::Tetrahedron(const double edge)
{
  if(edge >= 0.0)
  {
    Tetrahedron::edge = edge;
  }
  else
  {
    Tetrahedron::edge = 0.0;
  }
}

/**
 * Retornar a aresta do tetraedro
 *
 * @return aresta do tetraedro
 */
double Tetrahedron::getEdge() const
{
  return edge;
}

/**
 * Retornar a area do tetraedro
 *
 * @return area do tetraedro
 */
double Tetrahedron::area() const
{
  return sqrt(3.0) * pow(edge, 2.0);
}

/**
 * Retornar o volume do tetraedro
 *
 * @return volume do tetraedro
 */
double Tetrahedron::volume() const
{
  return sqrt(2.0) / 12.0 * pow(edge, 3.0);
}

Arquivo Application.cpp

/*************************************************************************
 * Copyright (C) 2009/2024 - Cristiano Lehrer (cristiano@ybadoo.com.br)  *
 *                  Ybadoo - Solucoes em Software Livre (ybadoo.com.br)  *
 *                                                                       *
 * Permission is granted to copy, distribute and/or modify this document *
 * under the terms of the GNU Free Documentation License, Version 1.3 or *
 * any later version published by the  Free Software Foundation; with no *
 * Invariant Sections,  no Front-Cover Texts, and no Back-Cover Texts. A *
 * A copy of the  license is included in  the section entitled "GNU Free *
 * Documentation License".                                               *
 *                                                                       *
 * Ubuntu 16.10 (GNU/Linux 4.8.0-39-generic)                             *
 * g++ (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005                           *
 *************************************************************************/

#include <iostream>

#include "Tetrahedron.hpp"

/**
 * Metodo principal da linguagem de programacao C++
 *
 * @param argc quantidade de argumentos na linha de comando (nao utilizado)
 * @param argv argumentos da linha de comando (nao utilizado)
 */
int main(int argc, char** argv)
{
  using namespace std;

  double edge;

  cout << "Forneça o valor da aresta do tetraedro: ";
  cin  >> edge;

  Tetrahedron* tetrahedron = new Tetrahedron(edge);

  cout << "A aresta do tetraedro é: "
       << tetrahedron->getEdge() << endl;

  cout << "A área do tetraedro é: "
       << tetrahedron->area() << endl;

  cout << "O volume do tetraedro é: "
       << tetrahedron->volume() << endl;

  delete tetrahedron;

  return 0;
}

Arquivo makefile

##########################################################################
 # Copyright (C) 2009/2024 - Cristiano Lehrer (cristiano@ybadoo.com.br)  #
 #                  Ybadoo - Solucoes em Software Livre (ybadoo.com.br)  #
 #                                                                       #
 # Permission is granted to copy, distribute and/or modify this document #
 # under the terms of the GNU Free Documentation License, Version 1.3 or #
 # any later version published by the  Free Software Foundation; with no #
 # Invariant Sections,  no Front-Cover Texts, and no Back-Cover Texts. A #
 # A copy of the  license is included in  the section entitled "GNU Free #
 # Documentation License".                                               #
 #                                                                       #
 # Ubuntu 16.10 (GNU/Linux 4.8.0-39-generic)                             #
 # gcc/g++ (Ubuntu 6.2.0-5ubuntu12) 6.2.0 20161005                       #
 ##########################################################################

g++ -o Tetrahedron.o -c Tetrahedron.cpp

g++ -o Application.o -c Application.cpp

g++ -o application Tetrahedron.o Application.o