Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

6 - exemplo: Orientação a Objetos

import std.stdio;

class Box { 
   public: 
      double length;   // Tamanho da caixa 
      double breadth;  // largura da caixa 
      double height;   // Altura da caixa 
}
  
void main() { 
   Box box1 = new Box();    // Declara Box1 como tipo Box 
   Box box2 = new Box();    // Declara Box2 como tipo Box  
   double volume = 0.0;     // Armazena o volume da caixa aqui  
   
   // especificações box 1
   box1.height = 5.0; 
   box1.length = 6.0; 
   box1.breadth = 7.0; 
   
   // especificações  box 2
   box2.height = 10.0; 
   box2.length = 12.0; 
   box2.breadth = 13.0;
   
   // volume da box 1 
   volume = box1.height * box1.length * box1.breadth; 
   writeln("Volume da Box1 : ",volume);
   
   // volume da box 2 
   volume = box2.height * box2.length * box2.breadth; 
   writeln("Volume da Box2 : ", volume);
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.