Решение на упр.03 задача 2 от Георги Колев

Обратно към всички решения

Към профила на Георги Колев

Резултати

  • 1 точка от тестове
  • 0 бонус точки
  • 1 точка общо
  • 1 успешни тест(а)
  • 0 неуспешни тест(а)

Код

enum VehicleKind {
Car,
Truck,
Motorcycle,
Bicycle,
}
struct Vehicle {
kind: VehicleKind,
fuel: f64,
distance: f64,
}
enum DriveError {
NotEnoughFuel { needed: f64, have: f64 }
}
impl Vehicle {
const CAR_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.07;
const TRUCK_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.15;
const MOTORCYCLE_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.05;
const BICYCLE_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.0;
pub fn new(kind: VehicleKind, fuel: f64) -> Self {
Vehicle {
kind: kind,
fuel: fuel,
distance: 0.0,
}
}
pub fn drive(&mut self, km: f64) -> Result<(), DriveError> {
let fuel_efficiency = match self.kind {
VehicleKind::Car => Vehicle::CAR_FUEL_EFFICIENCY_LITTER_KM,
VehicleKind::Truck => Vehicle::TRUCK_FUEL_EFFICIENCY_LITTER_KM,
VehicleKind::Motorcycle => Vehicle::MOTORCYCLE_FUEL_EFFICIENCY_LITTER_KM,
VehicleKind::Bicycle => Vehicle::BICYCLE_FUEL_EFFICIENCY_LITTER_KM,
};
let needed_fuel = km * fuel_efficiency;
if needed_fuel > self.fuel
{
return Err(DriveError::NotEnoughFuel { needed: needed_fuel, have: self.fuel });
}
self.fuel -= needed_fuel;
self.distance += km;
Ok(())
}
}

Лог от изпълнението

Updating crates.io index
     Locking 17 packages to latest compatible versions
   Compiling proc-macro2 v1.0.103
   Compiling quote v1.0.41
   Compiling unicode-ident v1.0.22
   Compiling futures-sink v0.3.31
   Compiling futures-core v0.3.31
   Compiling futures-channel v0.3.31
   Compiling pin-utils v0.1.0
   Compiling pin-project-lite v0.2.16
   Compiling futures-task v0.3.31
   Compiling syn v2.0.108
   Compiling slab v0.4.11
   Compiling futures-io v0.3.31
   Compiling memchr v2.7.6
   Compiling solution v0.1.0 (/tmp/d20251030-1757769-1xfol5k/solution)
warning: enum `VehicleKind` is never used
 --> src/lib.rs:1:6
  |
1 | enum VehicleKind {
  |      ^^^^^^^^^^^
  |
  = note: `#[warn(dead_code)]` on by default

warning: struct `Vehicle` is never constructed
 --> src/lib.rs:8:8
  |
8 | struct Vehicle {
  |        ^^^^^^^

warning: enum `DriveError` is never used
  --> src/lib.rs:14:6
   |
14 | enum DriveError {
   |      ^^^^^^^^^^

warning: associated items `CAR_FUEL_EFFICIENCY_LITTER_KM`, `TRUCK_FUEL_EFFICIENCY_LITTER_KM`, `MOTORCYCLE_FUEL_EFFICIENCY_LITTER_KM`, `BICYCLE_FUEL_EFFICIENCY_LITTER_KM`, `new`, and `drive` are never used
  --> src/lib.rs:20:11
   |
18 | impl Vehicle {
   | ------------ associated items in this implementation
19 |
20 |     const CAR_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.07;
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21 |     const TRUCK_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.15;
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22 |     const MOTORCYCLE_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.05;
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 |     const BICYCLE_FUEL_EFFICIENCY_LITTER_KM: f64 = 0.0;
   |           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24 |
25 |     pub fn new(kind: VehicleKind, fuel: f64) -> Self {
   |            ^^^
...
33 |     pub fn drive(&mut self, km: f64) -> Result<(), DriveError> {
   |            ^^^^^

warning: `solution` (lib) generated 4 warnings
   Compiling futures-macro v0.3.31
   Compiling futures-util v0.3.31
   Compiling futures-executor v0.3.31
   Compiling futures v0.3.31
warning: variants `Truck`, `Motorcycle`, and `Bicycle` are never constructed
 --> tests/../src/lib.rs:3:5
  |
1 | enum VehicleKind {
  |      ----------- variants in this enum
2 |     Car,
3 |     Truck,
  |     ^^^^^
4 |     Motorcycle,
  |     ^^^^^^^^^^
5 |     Bicycle,
  |     ^^^^^^^
  |
  = note: `#[warn(dead_code)]` on by default

warning: fields `needed` and `have` are never read
  --> tests/../src/lib.rs:15:19
   |
15 |   NotEnoughFuel { needed: f64, have: f64 }
   |   -------------   ^^^^^^       ^^^^
   |   |
   |   fields in this variant

warning: `solution` (test "solution_test") generated 2 warnings
    Finished `test` profile [unoptimized + debuginfo] target(s) in 10.67s
     Running tests/solution_test.rs (target/debug/deps/solution_test-bfd50394249726db)

running 1 test
test solution_test::test_basic ... ok

test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

История (1 версия и 0 коментара)

Георги качи първо решение на 23.10.2025 20:09 (преди 7 дена)