
How do I write a program using a linked list, that will prompt a user to enter 10 names and display them reversed using output dialog boxes.

import java.util.*;
import javax.swing.*;
class LinkedListExample
{
public static void main(String[] args)
{
String names[]=new String[5];
for(int i=0;i<names.length;i++){
names[i]=JOptionPane.showInputDialog("Enter name "+(i+1));
}
final LinkedList<String> list=new LinkedList<String>();
for(int i=0;i<names.length;i++){
list.add(names[i]);
}
Collections.reverse(list);
StringBuffer buffer=new StringBuffer();
for(String name : list){
buffer.append(name);
buffer.append("\n");
}
JOptionPane.showMessageDialog(null,"List of names in reverse order: \n"+buffer.toString());
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.