fork download
  1. #include <iostream>
  2. using namespace std;
  3. class Box
  4. {
  5. public:
  6. double length; // Довжина коробки
  7. double breadth; // Ширина коробки
  8. double height; // Висота коробки
  9. };
  10. class Point{
  11. int x;
  12. int y;
  13. };
  14. int main() {
  15. Box box1;
  16. box1.length=1;
  17. // your code goes here
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty