카타 8급 Volume of a Cuboid

1 C[ | ]

double getVolumeOfCubiod(double length, double width, double height) {
  return length * width * height;
}

2 C++[ | ]

double getVolumeOfCubiod(double length, double width, double height) {
  return length * width * height;
}

3 PHP[ | ]

$kata = new class {
  public function get_volume_of_cuboid($length, $width, $height) {
    return $length * $width * $height;
  }
};
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}