2018-02-22 06:09:53 +00:00
|
|
|
// errors3.rs
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
2016-06-21 15:40:32 +01:00
|
|
|
// This is a program that is trying to use a completed version of the
|
2019-11-11 12:37:43 +00:00
|
|
|
// `total_cost` function from the previous exercise. It's not working though!
|
2019-11-11 15:51:38 +00:00
|
|
|
// Why not? What should we do to fix it?
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint errors3` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2016-06-21 15:40:32 +01:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2016-06-21 15:40:32 +01:00
|
|
|
use std::num::ParseIntError;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut tokens = 100;
|
|
|
|
let pretend_user_input = "8";
|
|
|
|
|
2018-11-09 19:31:14 +00:00
|
|
|
let cost = total_cost(pretend_user_input)?;
|
2016-06-21 15:40:32 +01:00
|
|
|
|
|
|
|
if cost > tokens {
|
|
|
|
println!("You can't afford that many!");
|
|
|
|
} else {
|
|
|
|
tokens -= cost;
|
|
|
|
println!("You now have {} tokens.", tokens);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> {
|
|
|
|
let processing_fee = 1;
|
|
|
|
let cost_per_item = 5;
|
2018-11-09 19:31:14 +00:00
|
|
|
let qty = item_quantity.parse::<i32>()?;
|
2016-06-21 15:40:32 +01:00
|
|
|
|
|
|
|
Ok(qty * cost_per_item + processing_fee)
|
|
|
|
}
|