Posts

Showing posts from May, 2021

REVERSE ARRAY

package com.cnc ; import java.util.Scanner ; public class Main { public static void main ( String [] args) { Scanner sc = new Scanner( System . in ); System . out .println( "HOW MANY ELEMENT YOU WANT?" ); int n = sc .nextInt(); int [] element = new int [ n ]; for ( int i = 0 ; i < n ; i++) { System . out .println( "ENTER ARRAY ELEMENT " + (i + 1 )); element [i] = sc .nextInt(); } System . out .println( "ORIGINAL ELEMENT " ); for ( int i = 0 ; i < n ; i++) { System . out .print( element [i] + " " ); } System . out .println( " \n REVERSED ELEMENT " ); for ( int i = n - 1 ; i >= 0 ; i--) { System . out .print( element [i] + " " ); } } package com.cnc ; public class Main {   public static void main ( String [] args) { int [ ] array = { 0 , 1 , 2 , 3 , 4 , 5 };

FROM USER INPUT ARRANGE IT

Arrange 122,22,43,56,10 ---> 10,22,43,56,122 FROM USER INPUT package com.cnc ; import java.util.Scanner ; public class Main { public static void main ( String [] args) { int count , temp; //User inputs the array size Scanner scan = new Scanner( System . in ); System . out .print( "Enter number of elements you want in the array: " ); count = scan .nextInt(); int num [] = new int [ count ]; System . out .println( "Enter array elements:" ); for ( int i = 0 ; i < count ; i++) { num [i] = scan .nextInt(); } scan .close(); for ( int i = 0 ; i < count ; i++) { for ( int j = i + 1 ; j < count ; j++) { if ( num [i] > num [j]) { temp = num [i]; num [i] = num [j]; num [j] = temp; } } } System . out