| Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Spring Framework | Web Services | BioInformatics | Java Server Faces | Jboss 3.0 tutorial | Hibernate 3.0 | XML | ||||
|
||||
|
|
||||
| Tutorial Categories: Ajax
| Articles
| JSP
| Bioinformatics
| Database
| Free
Books |
Hibernate
| J2EE
| J2ME
| Java
| JavaScript
| JDBC
| JMS
| Linux
| MS
Technology |
PHP
| RMI
| Web-Services
| Servlets
| Struts
| UML
|
|
||||||||||||||||||||||||||||||
|
Home | JSP | EJB | JDBC | Java Servlets | WAP | Free JSP Hosting | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs |
||||||||||||||||||||||||||||||
Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.
Copyright © 2007. All rights reserved.
Current Comments
4 comments so far (post your own) View All Comments Latest 10 Comments:Yes it is a very nice site which give sample coding with explanation
Posted by Prasanta on Wednesday, 12.17.08 @ 05:09am | #82865
import java.util.*;
import java.io.*;
public class ShufflingListAndArray{
public static void main(String[] args) throws IOException{
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
System.out.print("How many elements you want to add to the list: ");
int n = Integer.parseInt(in.readLine());
System.out.print("Enter " + n + " numbers to sort: ");
List<Integer> list = new ArrayList<Integer>();
for(int i = 0; i < n; i++){
list.add(Integer.parseInt(in.readLine()));
}
Collections.shuffle(list);
Collections.sort(list);
System.out.println("List sorting :"+ list);
}
}
Hi,
line-> list.add(Integer.getInteger(in.readLine())); here List object has declare to hold Interger type using java generics. But Interger.parseInt(String) returns java primitive int.so it gives datatype compatibility while compiling. ofcourse this is small logical bugs.
Thanks,
Posted by Prasanta Panda on Wednesday, 12.17.08 @ 01:50am | #82853
give me simple 2d array programs and how pascal tringle is created with proper position plz. mail me
Posted by ashis rout on Monday, 12.15.08 @ 08:12am | #82784
a nice site which give sample coding with explanation...
Posted by paul on Tuesday, 08.21.07 @ 14:28pm | #23835