This is my code.
If the command line csv file (for example, input.csv) has the following:
Fred 22
Stella 11
Nellie 33
George 11
Violet 33
Rose 11
Bob 33
Lena 11
Billy 22
1) It should first print Fred is 22 years old.. Stella is 11 years old.. up to Billy is 22 years old (This works)
2) Then it should ask user to input the age (This works too)
3) Then for example, if user enters 11, it should only print people with 11 years old
Stella is 11 years old
Example output: http://img573.imageshack.us/img573/2415/examplea.jpg
George is 11 years old
Rose is 11 years old
Lena is 11 years old
But I'm getting blank on this part.. the method for this is displayPeopleWithSameAge().. could anyone help me out here?
Thank you!