Computer Science, asked by nehashetty4620, 24 days ago

Write a program to input 20 numbers in a single dimensional array and find the frequency

of the largest number in the array.​

Answers

Answered by Anonymous
1

Answer:

import java.util.Scanner;

public class KboatSDAMinMaxSum

{

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 < 20; i++) {

arr[i] = in.nextInt();

}

int min = arr[0], max = arr[0], sum = 0;

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

if (arr[i] < min)

min = arr[i];

if (arr[i] > max)

max = arr[i];

sum += arr[i];

}

System.out.println("Largest Number = " + max);

System.out.println("Smallest Number = " + min);

System.out.println("Sum = " + sum);

}

}

Explanation:

hope it's helpful to you now Mark me brainest thank you

Similar questions