Tracking Customer Data
Please look at the sections //set customer's data to object and // add all necessary attributes import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); String firstName = read.nextLine(); String secondName = read.nextLine(); int age = read.nextInt(); int roomNumber = read.nextInt(); Customer customer = new Customer(); //set customer's data to object here customer.firstName = firstName; customer.secondName = secondName; customer.age = age; customer.roomNumber = roomNumber; customer.saveCustomerInfo(); } } class Customer { //add all necessary attributes here String firstName = customer.firstName; String secondName = customer.secondName; int age = customer.age; int roomNumber = customer.roomNumber; public void saveCustomerInfo() { System.out