Add quiz1 solution
This commit is contained in:
parent
d9824aead2
commit
01f7d29148
|
@ -7,10 +7,14 @@
|
||||||
// more than 40 at once, each apple only costs 1! Write a function that calculates
|
// 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!
|
// the price of an order of apples given the order amount. No hints this time!
|
||||||
|
|
||||||
// I AM NOT DONE
|
|
||||||
|
|
||||||
// Put your function here!
|
// Put your function here!
|
||||||
// fn ..... {
|
fn calculate_apple_price(amount: i32) -> i32 {
|
||||||
|
if amount > 40 {
|
||||||
|
amount
|
||||||
|
} else {
|
||||||
|
amount * 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Don't modify this function!
|
// Don't modify this function!
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Reference in a new issue