代码搜索:Box

找到约 10,000 项符合「Box」的源代码

代码结果 10,000
www.eeworm.com/read/435150/7796379

h box.h

// Box.h #ifndef BOX_H #define BOX_H class Box { public: Box(double lengthValue = 1.0, double widthValue = 1.0, double heightValue = 1.
www.eeworm.com/read/435150/7796380

cpp box.cpp

// Box.cpp #include "Box.h" #include using std::cout; using std::endl; // Constructor Box::Box(double lvalue, double wvalue, double hvalue) : length(lvalue), wi
www.eeworm.com/read/435150/7796389

h box.h

// Box.h #ifndef BOX_H #define BOX_H #include "Vessel.h" class Box : public Vessel { public: Box(double lengthValue = 1.0, double widthValue = 1.0, double heightValue = 1.0); //
www.eeworm.com/read/435150/7796390

cpp box.cpp

// Box.cpp #include "Box.h" Box::Box(double lvalue, double wvalue, double hvalue) : length(lvalue), width(wvalue), height(hvalue) {} double Box::volume() cons
www.eeworm.com/read/435150/7796394

h box.h

// Box.h #ifndef BOX_H #define BOX_H class Box { public: Box(double lengthValue = 1.0, double widthValue = 1.0, double heightValue = 1.
www.eeworm.com/read/435150/7796395

cpp box.cpp

// Box.cpp #include "Box.h" #include using std::cout; using std::endl; // Constructor Box::Box(double lvalue, double wvalue, double hvalue) : length(lvalue), wi
www.eeworm.com/read/435150/7796401

h box.h

// Box.h #ifndef BOX_H #define BOX_H class Box { public: Box(double lengthValue = 1.0, double widthValue = 1.0, double heightValue = 1.
www.eeworm.com/read/435150/7796402

cpp box.cpp

// Box.cpp #include "Box.h" Box::Box(double lvalue, double wvalue, double hvalue) : length(lvalue), width(wvalue), height(hvalue) {}
www.eeworm.com/read/435150/7796408

h box.h

// Box.h #ifndef BOX_H #define BOX_H #include "Vessel.h" class Box { public: Box(double lengthValue = 1.0, double widthValue = 1.0, d
www.eeworm.com/read/435150/7796409

cpp box.cpp

// Box.cpp #include "Box.h" #include using std::cout; using std::endl; // Constructor Box::Box(double lvalue, double wvalue, double hvalue) : length(lvalue), wi