FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

package demos; import java.util.Scanner; public class SelectionSort { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in);//user input using scanner System.out.println("Enter the size of the array");//taking size of the array from user int size=sc.nextInt(); int array[]=new int[size];//declaring array of n elements to be sorted System.out.println("Enter"+ size + "elements to sort"); for(int i=0;i

Back | FazBrowse Home | New Git URL