मराठी

Write a program to accept a list of 20 integers. Sort the first 10 numbers in ascending order and next the 10 numbers in descending order by using Bubble Sort technique. - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program to accept a list of 20 integers. Sort the first 10 numbers in ascending order and next the 10 numbers in descending order by using Bubble Sort technique. Finally, print the complete list of integers.

Hint: Class average is the average marks obtained by 40 students in a particular subject. 

थोडक्यात उत्तर

उत्तर

import java.util.*;
public class AQ7
{public static void main(String g[]){
int i, j, tmp;
int a[] = new int[20];
Scanner sc = new Scanner(System.in);

// INPUT
System.out.printIn("Enter the elements");
for (i = 0; i < a.length; i++)
{a[i] = sc.nextInt();
if (i == 9) System.out.printIn("Enter the next 10 elts");
}

// SORT FIRST TEN VALUES IN ASCENDING ORDER (bubble sort)
for (i = 0; i <= 9; i++)
{
for (j = 0; j < 9; j++)
{if (a[j] > a[j + 1])
{tmp = a[j];
a[j] = a[j + 1]; 
a[j + 1] = tmp;
}}}

//SORT LAST TEN VALUES IN DESCENDING ORDER (bubble sort)
for (i = 10; i <= 19; i++)
{
for (j = 10; j < 19; j++)
{if (a[j] < a[j + 1])
{tmp = a[j];
a[j] = a[j + 1];
a[j + 1] = tmp;
}}}

System.out.println("The first ten values in Ascending Order");
for (i = 0; i <= 19; i++)
{System.out.println(a[i]);
if (i==9) System.out.println("\n The Last Ten values In Descending Order:");
}
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 3: Arrays (Single Dimensional and Double Dimensional) - EXERCISES [पृष्ठ २४१]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 3 Arrays (Single Dimensional and Double Dimensional)
EXERCISES | Q VII. 7. | पृष्ठ २४१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×