mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Chris
f1b1822bec
|
4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago |
README.md
does_it_fit
Instructions
Using the areas_volumes
module provided, create two functions:
-
area_fit
which receives 6 arguments and returns a boolean:x
andy
, length and width of the square in which it is going to be tried to fit the geometrical shapes (both usize)objects
, the type of geometrical shape(s) which are going to be tried to be fitted in the square (areas_volumes::GeometricalShapes)times
, the number of geometrical shapes which are going to be tried to be fitted in the square (usize)a
andb
, the dimensions which the plane(s) shape(s) passed will have (both usize)a
will refer to the side of the Square, the radius of the Circle, the side_a of the Rectangle or the base of the Triangleb
will refer to the side_b of the Rectangle or the height of the Trianglearea_fit
should returntrue
if the geometrical shape(s) fit inside of the square.
-
volume_fit
which receives 8 arguments and returns a boolean:x
,y
andz
, length, width and depth of the box in which it is going to be tried to fit the geometrical volumes (both usize)objects
, the type of geometrical volume(s) which are going to be tried to be fitted in the box (areas_volumes::GeometricalVolumes)times
, the number of geometrical volumes which are going to be tried to be fitted in the box (usize)a
,b
andc
, the dimensions which the geometrical volume(s) passed will have (all of them usize)a
will refer to the side of the Cube, the radius of the Sphere, the side_a of the Parallelepipede, the area of the base of the Triangular Pyramid or the base radius of the Coneb
will refer to the side_b of the Parallelepiped, the height of the Triangular Pyramid or the height of the Conec
will refer to the side_c of the Parallelepipedvolume_fit
should returntrue
if the geometrical volume(s) fit inside of the box.
Expected Functions
pub fn area_fit(
x: usize,
y: usize,
objects: areas_volumes::GeometricalShapes,
times: usize,
a: usize,
b: usize,
) -> bool {
}
pub fn volume_fit(
x: usize,
y: usize,
z: usize,
objects: areas_volumes::GeometricalVolumes,
times: usize,
a: usize,
b: usize,
c: usize,
) -> bool {
}
areas_volumes.rs
pub enum GeometricalShapes {
Square,
Circle,
Rectangle,
Triangle,
}
pub enum GeometricalVolumes {
Cube,
Sphere,
Cone,
Pyramid,
Parallelepiped,
}
pub fn square_area(side: usize) -> usize {
side.pow(2)
}
pub fn triangle_area(base: usize, height: usize) -> f64 {
(base as f64 * height as f64) / 2.0
}
pub fn circle_area(radius: usize) -> f64 {
std::f64::consts::PI * (radius.pow(2) as f64)
}
pub fn rectangle_area(side_a: usize, side_b: usize) -> usize {
side_a * side_b
}
pub fn cube_volume(side: usize) -> usize {
side.pow(3)
}
pub fn sphere_volume(radius: usize) -> f64 {
(4.0 / 3.0) * std::f64::consts::PI * (radius.pow(3) as f64)
}
pub fn triangular_pyramid_volume(base_area: f64, height: usize) -> f64 {
(base_area * height as f64) / 3.0
}
pub fn parallelepiped_volume(side_a: usize, side_b: usize, side_c: usize) -> usize {
side_a * side_b * side_c
}
pub fn cone_volume(base_radius: usize, height: usize) -> f64 {
(1.0 / 3.0) * std::f64::consts::PI * base_radius.pow(2) as f64 * height as f64
}
Usage
Here is a program to test your function:
use does_it_fit::*;
fn main() {
println!(
"Do 100 rectangles (2x1) fit in a 2 by 4 square? {}",
area_fit(2, 4, GeometricalShapes::Rectangle, 100, 2, 1)
);
println!(
"Do 3 triangles (5 base and 3 height) fit in a 5 by 5 square? {}",
area_fit(5, 5, GeometricalShapes::Triangle, 3, 5, 3)
);
println!(
"Do 3 spheres (2 radius) fit in a 5 by 5 by 5 box? {}",
volume_fit(5, 5, 5, GeometricalVolumes::Sphere, 3, 2, 0, 0)
);
println!(
"Do 3 triangles (5 base and 3 height) fit in a 5 by 7 by 5 box? {}",
volume_fit(5, 7, 5, GeometricalVolumes::Parallelepiped, 1, 6, 7, 4)
);
}
And its output:
$ cargo run
Do 100 rectangles (2x1) fit in a 2 by 4 square? false
Do 3 triangles (5 base and 3 height) fit in a 5 by 5 square? true
Do 3 spheres (2 radius) fit in a 5 by 5 by 5 box? true
Do 3 triangles (5 base and 3 height) fit in a 5 by 7 by 5 box? true
$