-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.1.scala
38 lines (36 loc) · 1.08 KB
/
4.1.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
object act41 extends App{
var items = Array("orange", "apple", "banana")
var quantity = Array(34,14,57)
def displayInventory():Unit = {
println("Item : Quantity")
for (i <- items.indices) {
println(items(i) + " : " + quantity(i))
}
}
def restockItem(item:String, nquantity:Integer):Unit={
val index = items.indexOf(item.toLowerCase())
if(index != -1){
quantity(index) += nquantity
println(s"${nquantity} ${item} added.")
println("New List")
displayInventory()
}else{
println("Item not found!")
}
}
def sellItem(item:String, squantity:Integer):Unit ={
val index = items.indexOf(item.toLowerCase())
if(index != -1){
quantity(index) -= squantity
println(s"${squantity} ${item} sold...")
println("New List")
displayInventory()
}
else{
println("Item not found.")
}
}
displayInventory()
restockItem("Orange",34)
sellItem("Apple",4)
}