Q:

Scala program to print iterate map using the for loop

belongs to collection: Scala Map Programs

0

Here, we will create two maps using Map collection. The Map collection is used to store key/value pairs and then iterate the map using the for loop and print on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to print iterate map using the for loop is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to print iterate map using "for" loop

object Sample {
  // Main method
  def main(args: Array[String]) {
    var students = Map(("101", "Amit"), ("102", "Arun"), ("103", "Anit"))
    var employees = Map((1001, "Akash"), (1002, "Vikas"), (1003, "Prakash"))

    println("Student Information:");
    for ((stuId, stuName) <- students)
      printf("\tId: %s, Name: %s\n", stuId, stuName);

    println("Employee Information:");
    for ((empId, empName) <- employees)
      printf("\tId: %d, Name: %s\n", empId, empName);
  }
}

Output:

Student Information:
	Id: 101, Name: Amit
	Id: 102, Name: Arun
	Id: 103, Name: Anit
Employee Information:
	Id: 1001, Name: Akash
	Id: 1002, Name: Vikas
	Id: 1003, Name: Prakash

Explanation:

Here, we used an object-oriented approach to create the program. And, we also created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.

In the main() function, we created two maps students and employees. The students map contains the student id and student name. The employees map contains employee id and employee name. Then we iterated created maps using the for loop and printed the result on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Scala program to add elements to the Map collectio... >>