Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For a given array of N integers (where each value represents the number of chocolates in a packet and array size as a number of

image text in transcribed

image text in transcribed

image text in transcribed

For a given array of N integers (where each value represents the number of chocolates in a packet and array size as a number of packets) and M students, write a program t distribute the chocolate packets as below and print the result of it. 1) Each student gets one packet. 2) The difference between the number of chocolates in packet with maximum chocolates and packet with minimum chocolates given to the students is minimum. For example,if input array=5,9,7,11,14,17 and Students =3 so output =4 because 1) Each student gets one packet. 2) The difference between the number of chocolates in packet with maximum chocolates and packet with minimum chocolates given to the students is minimum. For example, if input array =5,9,7,11,14,17 and Students =3 so output=4 because minimum difference elements of array are 5,7,9 which has differene =2 so we consider them as packet with minimum chocolates for 3 students and difference between the number of chocolates in pack with maximum chocolates =95=4 . Limport java.util.*; 2. class MinDiffNum \{ static int findMinDiff(int arr[], int n, int m ) \{ //write your code here \} public static void main(String[] args) \{ MinDiffNum obj = new MinDiffNum(); Scanner in = new Scanner(System.in); int n=in. nextInt(); int m=in. nextInt(); int arr[]= new int [n]; for (int i=0;i<>

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Mannino Michael

5th Edition

0983332401, 978-0983332404

More Books

Students also viewed these Databases questions