Quiz1 exercise ()

* Complete if exercises

* Complete quiz1 exercise
This commit is contained in:
Tyler Cardinal 2021-05-05 08:55:51 -05:00 committed by GitHub
parent 9d16451196
commit b48abc99a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,10 +7,15 @@
// more than 40 at once, each apple only costs 1! Write a function that calculates
// the price of an order of apples given the order amount. No hints this time!
// I AM NOT DONE
// Put your function here!
// fn ..... {
fn calculate_apple_price(count: u32) -> u32 {
if count > 40 {
count
} else {
count * 2
}
}
// Don't modify this function!
#[test]