A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a Java program to find the k smallest elements in a given array. Elements in the array can be in any order
Q:

Write a Java program to find the k smallest elements in a given array. Elements in the array can be in any order

0

 Write a Java program to find the k smallest elements in a given array. Elements in the array can be in any order

Expected Output:
Original Array:
[1, 4, 17, 7, 25, 3, 100]
3 largest elements of the said array are:
100 25 17

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.*;
public class Solution {
	
    public static void main(String[] args) 
    {
        Integer arr[] = new Integer[]{1, 4, 17, 7, 25, 3, 100};
  int k = 3;
  System.out.println("Original Array: ");
  System.out.println(Arrays.toString(arr));
  System.out.println(k + " smallest elements of the said array are:");
  Arrays.sort(arr);
  for (int i = 0; i < k; i++)
   System.out.print(arr[i] + " ");
 }
}

Sample Output:

Original Array: 
[1, 4, 17, 7, 25, 3, 100]
3 smallest elements of the said array are:
1 3 4 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now