Write a Scala program to find the largest and smallest number from a given list
- برمجة سكالا
- 2021-09-24
- mhanasmh00489829403
الأجوبة
object Scala_List
{
def main(args: Array[String]): Unit =
{
//Iterate over a list
val nums = List(1, 3, 5, 7, 9, 11, 14, 12)
println("Original list:")
println(nums)
println("Largest number of the said list:")
println(nums.max)
println("Smallest number from the said list:")
println(nums.min)
}
}
Sample Output:
Original list: List(1, 3, 5, 7, 9, 11, 14, 12) Largest number of the said list: 14 Smallest number from the said list: 1
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
معلومات ذات صلة