Computer Science, asked by tara0000, 17 hours ago

Q.1.Write a program in Java to store 20 positive integer value in an array of size 20.

Find all prime numbers present in that array.


Q.2. Write a program in Java to store 20 integer value in an array of size 20. Sort the

array in descending order by using Selection Sort Technique

Answers

Answered by crankybirds30
0

Answer:

c0de for the first one

import java.util.Scanner;

public class KboatSDAPrimeNumbers

{

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

int arr[] = new int[20];

System.out.println("Enter 20 numbers");

for (int i = 0; i < arr.length; i++) {

arr[i] = in.nextInt();

}

System.out.println("Prime Numbers:");

for (int i = 0; i < arr.length; i++) {

int c = 0;

for (int j = 1; j <= arr[i]; j++) {

if (arr[i] % j == 0) {

c++;

}

}

if (c == 2)

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

}

}

}

c0de for the second one

import java.util.Scanner;

public class KboatSDABubbleSort

{

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

int arr[] = new int[20];

System.out.println("Enter 20 numbers:");

for (int i = 0; i < arr.length; i++) {

arr[i] = in.nextInt();

}

//Sort first half in ascending order

for (int i = 0; i < arr.length / 2 - 1; i++) {

for (int j = 0; j < arr.length / 2 - i - 1; j++) {

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

int t = arr[j + 1];

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

arr[j] = t;

}

}

}

//Sort second half in descending order

for (int i = 0; i < arr.length / 2 - 1; i++) {

for (int j = arr.length / 2; j < arr.length - i - 1; j++) {

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

int t = arr[j + 1];

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

arr[j] = t;

}

}

}

//Print the final sorted array

System.out.println("\nSorted Array:");

for (int i = 0; i < arr.length; i++) {

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

}

}

}

Answered by Anonymous
0

Answer:

hey

kya tum mujhe sikha skte ho

ye latex kese likhe jate hai pls

Similar questions