Computer Science, asked by arpita1322, 5 months ago

write a program in blue j to store 10 integers in the single dimensional array arrange them in descending order .ask the user to input one more number and store it at a position.

pls someone solve this program.. ​
pls help

Answers

Answered by Sd12365
2

Answer:

import java.util.Scanner;

class BubbleSortExample {

 public static void main(String []args) {

   int num, i, j, temp;

   Scanner input = new Scanner(System.in);

 

   System.out.println("Enter the number of integers to sort:");

   num = input.nextInt();

 

   int array[] = new int[num];

 

   System.out.println("Enter " + num + " integers: ");

 

   for (i = 0; i < num; i++)  

     array[i] = input.nextInt();

 

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

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

       if (array[j] > array[j+1])  

       {

          temp = array[j];

          array[j] = array[j+1];

          array[j+1] = temp;

       }

     }

   }

hope it helps you ...

please mark it as brainliest......................

Answered by Doraemon9691
0

Answer:

bangali mata

Explanation:

pagli...............

Similar questions