From e73b046fe52746d8b9ef57c35874a975a22d4fad Mon Sep 17 00:00:00 2001
From: sota_masuda <sota.m777121@gmail.com>
Date: Sat, 15 May 2021 12:19:36 +0900
Subject: [PATCH] solved ex.quiz1

---
 exercises/quiz1.rs | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs
index 5c5c355..21d80e8 100644
--- a/exercises/quiz1.rs
+++ b/exercises/quiz1.rs
@@ -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(num:i32) -> i32 {
+    if num < 40 {
+        num * 2
+    } else {
+        num
+    }
+}
 
 // Don't modify this function!
 #[test]