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

Desenvolva uma classe chamada TruncatedCube para representar um cubo truncado, ou seja, um poliedro semi-regular composto por seis faces octogonais regulares e oito faces triangulares regulares, considerado um dos treze Sólidos de Arquimedes. A classe possui um único atributo denominado edge, do tipo double, que representa a aresta do cubo truncado e cujo valor deve ser maior ou igual a zero e menor ou igual a quarenta. A classe possui dois construtores: o primeiro configura a aresta do cubo truncado com o valor padrão 1.0, e o segundo recebe como parâmetro a aresta do cubo truncado. A aresta do cubo truncado pode ser obtida e alterada pelo usuário por meio dos métodos getEdge() e setEdge(), respectivamente. A classe também apresenta os métodos area() e volume(), que retornam a área e o volume do cubo truncado, respectivamente. A área de um cubo truncado de aresta a é obtida pela fórmula 2 * (6 + 6 * √2 + √3) * a2. O volume de um cubo truncado de aresta a é obtido pela fórmula 1 / 3 * (21 + 14 * √2) * 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 TruncatedCube.java Application.java
Diagrama de Classes
Diagrama de Classes na Linguagem de Programação Java

Arquivo TruncatedCube.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.tutorial02.exercicio17;

/**
 * Classe responsavel pela representacao de um cubo truncado
 */
public class TruncatedCube
{
  /**
   * Aresta do cubo truncado
   */
  private double edge;

  /**
   * Construtor para inicializar o cubo truncado
   */
  public TruncatedCube()
  {
    this(1.0);
  }

  /**
   * Construtor para inicializar a aresta do cubo truncado
   *
   * @param edge aresta do cubo truncado
   */
  public TruncatedCube(double edge)
  {
    setEdge(edge);
  }

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

  /**
   * Configurar a aresta do cubo truncado
   *
   * @param edge aresta do cubo truncado
   */
  public void setEdge(double edge)
  {
    if((edge >= 0.0) && (edge <= 40.0))
    {
      this.edge = edge;
    }
    else
    {
      if(edge > 40.0)
      {
        this.edge = 40.0;
      }
      else
      {
        this.edge = 0.0;
      }
    }
  }

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

  /**
   * Retornar o volume do cubo truncado
   *
   * @return volume do cubo truncado
   */
  public double volume()
  {
    return 1.0 / 3.0 * (21.0 + 14.0 * Math.sqrt(2.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.tutorial02.exercicio17;

import java.util.Scanner;

/**
 * Classe responsavel pela execucao da classe TruncatedCube
 */
public class Application
{
  /**
   * Construtor para inicializar a execucao da classe TruncatedCube
   */
  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 cubo truncado: ");

    double edge = scanner.nextDouble();

    scanner.close();

    TruncatedCube truncatedCube = new TruncatedCube(edge);

    System.out.print("A aresta do cubo truncado é: ");
    System.out.println(truncatedCube.getEdge());

    System.out.print("A área do cubo truncado é: ");
    System.out.println(truncatedCube.area());

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

Arquivo TruncatedCube.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 TRUNCATEDCUBE_HPP
#define TRUNCATEDCUBE_HPP

/**
 * Classe responsavel pela representacao de um cubo truncado
 */
class TruncatedCube
{
  public:

  /**
   * Construtor para inicializar o cubo truncado
   */
  TruncatedCube();

  /**
   * Construtor para inicializar a aresta do cubo truncado
   *
   * @param edge aresta do cubo truncado
   */
  TruncatedCube(const double edge);

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

  /**
   * Configurar a aresta do cubo truncado
   *
   * @param edge aresta do cubo truncado
   */
  void setEdge(const double edge);

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

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

  private:

  /**
   * Aresta do cubo truncado
   */
  double edge;
};

#endif

Arquivo TruncatedCube.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 "TruncatedCube.hpp"

/**
 * Construtor para inicializar o cubo truncado
 */
TruncatedCube::TruncatedCube()
{
  setEdge(1.0);
}

/**
 * Construtor para inicializar a aresta do cubo truncado
 *
 * @param edge aresta do cubo truncado
 */
TruncatedCube::TruncatedCube(const double edge)
{
  setEdge(edge);
}

/**
 * Retornar a aresta do cubo truncado
 *
 * @return aresta do cubo truncado
 */
double TruncatedCube::getEdge() const
{
  return edge;
}

/**
 * Configurar a aresta do cubo truncado
 *
 * @param edge aresta do cubo truncado
 */
void TruncatedCube::setEdge(const double edge)
{
  if((edge >= 0.0) && (edge <= 40.0))
  {
    TruncatedCube::edge = edge;
  }
  else
  {
    if(edge > 40.0)
    {
      TruncatedCube::edge = 40.0;
    }
    else
    {
      TruncatedCube::edge = 0.0;
    }
  }
}

/**
 * Retornar a area do cubo truncado
 *
 * @return area do cubo truncado
 */
double TruncatedCube::area() const
{
  return 2.0 * (6.0 + 6.0 * sqrt(2.0) + sqrt(3.0)) * pow(edge, 2.0);
}

/**
 * Retornar o volume do cubo truncado
 *
 * @return volume do cubo truncado
 */
double TruncatedCube::volume() const
{
  return 1.0 / 3.0 * (21.0 + 14.0 * sqrt(2.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 "TruncatedCube.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 cubo truncado: ";
  cin  >> edge;

  TruncatedCube* truncatedCube = new TruncatedCube(edge);

  cout << "A aresta do cubo truncado é: "
       << truncatedCube->getEdge() << endl;

  cout << "A área do cubo truncado é: "
       << truncatedCube->area() << endl;

  cout << "O volume do cubo truncado é: "
       << truncatedCube->volume() << endl;

  delete truncatedCube;

  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 TruncatedCube.o -c TruncatedCube.cpp

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

g++ -o application TruncatedCube.o Application.o