ISC 2016 PRACTICAL QUESTIONS SOLVED import java.util.*; class Sort { public static void main(String args[]) { Scanner sc=new Scanner(System.in); int s=0; System.out.print("Enter the no. of rows & columns"); int n=sc.nextInt(); int A[][]=new int[n][n]; for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { System.out.print("Enter the elements "); A[i][j]=sc.n...
Posts
Showing posts from April 11, 2016