use outliers_table::prices::CulcPrices;
pub fn main() {
let min_height_min_width_price = 50.0; let min_height_max_width_price = 60.0; let max_height_min_width_price = 70.0; let max_height_max_width_price = 80.0; let min_h = 1.0;
let max_h = 5.0;
let min_w = 1.0;
let max_w = 4.0;
let step_w = 0.5;
let step_h = 0.5;
let mut prices = CulcPrices::new(
&min_height_min_width_price,
&min_height_max_width_price,
&max_height_min_width_price,
&max_height_max_width_price,
&min_h,
&max_h,
&min_w,
&max_w,
&step_w,
&step_h
);
prices.culc_prices_table(false);
println!("\n{}", prices);
prices.culc_prices_table(true);
println!("\n{}", prices);
}