Computer Science, asked by varsuvk, 6 hours ago

Write a program input 10 unique number and display it in ascending order​

Answers

Answered by RaghavBansal100
0

Answer:

import java.util.Scanner;

public class KboatBubbleSortDsc

{

   public static void main(String args[]) {

       Scanner in = new Scanner(System.in);

       int n = 10;

       int arr[] = new int[n];

       

       System.out.println("Enter the elements of the array:");

       for (int i = 0; i < n; i++) {

           arr[i] = in.nextInt();

       }

       

       //Bubble Sort

       for (int i = 0; i < n - 1; i++) {

           for (int j = 0; j < n - i - 1; j++) {

               if (arr[j] < arr[j + 1]) {

                   int t = arr[j];

                   arr[j] = arr[j+1];

                   arr[j+1] = t;

               }

           }  

       }

       

       System.out.println("Sorted Array:");

       for (int i = 0; i < n; i++) {

           System.out.print(arr[i] + " ");

       }

   }

}

Explanation:

import java.util.Scanner;

public class KboatBubbleSortDsc

{

   public static void main(String args[]) {

       Scanner in = new Scanner(System.in);

       int n = 10;

       int arr[] = new int[n];

       

       System.out.println("Enter the elements of the array:");

       for (int i = 0; i < n; i++) {

           arr[i] = in.nextInt();

       }

       

       //Bubble Sort

       for (int i = 0; i < n - 1; i++) {

           for (int j = 0; j < n - i - 1; j++) {

               if (arr[j] < arr[j + 1]) {

                   int t = arr[j];

                   arr[j] = arr[j+1];

                   arr[j+1] = t;

               }

           }  

       }

       

       System.out.println("Sorted Array:");

       for (int i = 0; i < n; i++) {

           System.out.print(arr[i] + " ");

       }

   }

}

Answered by RounakRaj007
0

This program will help you....

Thank you,

IF IT HELPED YOU THEN MARK IT AS THE BRAINLIEST ONE .

Attachments:
Similar questions