Home Answers Viewqa Java-Magazine get median in java

 
 


Java Coder
get median in java
1 Answer(s)      a year and 3 months ago
Posted in : Java Magazine

How to get the median value in Java from the given list.

View Answers

February 16, 2012 at 12:29 PM


import java.util.*;
class FindMedian {

public static int findMedian(int array[]) {
int length=array.length;
int[] sort = new int[length];
System.arraycopy(array, 0, sort, 0, sort.length);
Arrays.sort(sort);

if (length % 2 == 0) {
return (sort[(sort.length / 2) - 1] + sort[sort.length / 2]) / 2;
} else {
return sort[sort.length / 2];
}
}

public static void main(String[] args)
{
int min = 30;
int max = 50;
int[] ranNum = new int[5];
System.out.println("Enter Numbers:");
for ( int i = 0; i < ranNum.length; i++) {
ranNum[i] = (int)(Math.random() * (max - min + 1) ) + min;
System.out.println(ranNum[i]);
}
int median=Find.findMedian(ranNum);
System.out.println("Median= "+median);
}
}









Related Pages:
get median in java
get median in java  How to get the median value in Java from the given list.   import java.util.*; class FindMedian { public static int... median=Find.findMedian(ranNum); System.out.println("Median= "+median
Java Find Median
Java Find Median In this tutorial, you will learn how to find the median of numbers. There is no built in method to find the median of a list of numbers in the Java framework. But you can create your own method when you need to find
Mean, Median and Mode - Java Beginners
Mean, Median and Mode  Write a java program that computes three measures of central tendency of a given set of students marks: mean, median, and mode...); System.out.println("Mean= "+mean); int median=Find.findMedian(ranNum
get absolute time java
get absolute time java  How to get absolute time in java
java get file permission
java get file permission  How to check the get file permission in Java
Java get System Locale
Java get System Locale       In this section, you will learn how to obtain the locale. We are providing you an example which will obtain the locale of the system
how to get this xml syntx in java??????
how to get this xml syntx in java??????  how to get this xml syntx in java?????? < comp xlink:type="new" xlink:actuate="onload"/>
how to get this xml syntx in java??????
how to get this xml syntx in java??????   how to get this xml syntx in java?????? < comp xlink:type="new" xlink:actuate="onload"/>
How to get enum value in Java
How to get enum value in Java  Hi all, i am looking for a solution to get an enum value from index in Java. Please suggest. Thanks
CORE JAVA get middle name
CORE JAVA get middle name  hello sir...how to get middle name using string tokenizer....??? eg..like name ANKIT it will select only K...!!!!   The given code accepts the name from the console and find the middle
Java get windows Username
Java get windows Username       In this section, you will learn how to obtain the window's username. We are providing you an example which will obtain the window's username
Java Get Example
Java Get Example      ... examples to get the things fast and practice these code at your end to learn java.... Java Get Examples.. Get host name in Java: This example is going
want to get job on java - Java Beginners
want to get job on java  want to get job on java what should be prepared.  To know java quickly. Just click the following links:http://www.roseindia.net/java/new-to-java.shtmlhttp://www.roseindia.net/java/java
Java Get Example
Java Get Example      ... examples to get the things fast and practice these code at your end to learn java.... Java Get Examples.. Get host name in Java: This example
get
get ( ) Method in PHP  what is get method in PHP   Please visit the following link: http://www.roseindia.net/php/php-Get-Post.shtml
Get and Display using JOptionPane
Get and Display using JOptionPane  Hello everyone, I have been asked by my lecturer to do a simple program. But, I don't have the idea how to start on in because this is my first time handling java. She ask to get some data
Not get ans properly
Not get ans properly  I create db on my system using MS-acess,then I create DSN for program but I still not get answer It throws an Exception "java.lang.classNotFoundException",what is this I don't get plz help me.   
Java file get name
Java file get name In this section, you will learn how to get the name of the file. Description of code: You can see in the given example, we have created... get the name of any file. Output: File name is: out.txt
In Java how to get size of class and object?
In Java how to get size of class and object?  In Java how to get size of class and object
In Java how to get size of class and object?
In Java how to get size of class and object?  In Java how to get size of class and object
Java Get Method
Java Get Method       In this example you will learn how to use the get method in Java. Java... to use get method in Java.  The example is going to show the date details
Java file get size
Java file get size In this section, you will learn how to get the size of a file. Description of code: You can see in the given example, we have created... is: " + filesizeInKB + " KB"); } } Through the method length(), you can get
How to get data datagrid ?
How to get data datagrid ?  How to get data datagrid in jsp from arrayList in java? Code in java CategoryDao dao = new CategoryDao(); ArrayList<Categories> lstCategory = new ArrayList<Categories>
Java get available Font
Java get available Font       In this section, you will learn how to get the available.... It returns the font name. Here is the code of GetAvailableFont .java
Java get User Home
Java get User Home       In this section, you will study how to get the user home. We... In this section we want to describe a code that helps you to get the home directory
Java Get Memory
Java Get Memory       In this section of Java Example, you will see how to get the memory... can easily learn it. In this Java Get Memory Size example, we have created
Java Get Class Location
Java Get Class Location       In this section, you will learn how to get the class location. For this, we have used the classes URL and ClassLoader. The class
How to get browser time zone?
How to get browser time zone?  How to get browser Time Zone and browser date using java concept
Java get middle character
Java get middle character In this tutorial, you will learn how to get middle... of the word entered by the user using Java. If you have a word string 'company' and you want to get the character 'p' from the word, then you can
Java get Next Day
Java get Next Day       In this section, you will study how to get the next day in java... DateFormatSymbols in order to get the names of the days of the week. The method getWeekdays
java code to get the internet explorer version
java code to get the internet explorer version  Hi, Could u plz help me in finding the internet explorer version using java code...i have the javascript but i want this in java code... Thanks, Pawan
How to get the unicode of japanese character input in java
How to get the unicode of japanese character input in java  Good Evening sir/madam; I am trying to create an application in java which needs to show the japanese character on frame and need to get the japanese string from
java get all ip addresses in a lan
java get all ip addresses in a lan  Anybody have any idea on using java or cpp on how to get the ip addresses of all the machines[win or linux] connected to a computer in a LAN?. If this is not possible is there any function
Java get byte array from file
Java get byte array from file  what is the code example in Java for getting byte array from file in memory. Thanks   This is very simple code in Java. Following tutorials will teach you how to achieve this. Java
Get computer name in java
Get computer name in java       We can get the computer name by the java code program... C:\javaexamples>java GetComputerName roseindia   Download
To get the String between two strings
To get the String between two strings  How to get string between two strings repeatedly using java?   Hi, Please tell me more about what do you want to achive. Thanks
Java Get Month
Java Get Month       In the previous Java examples, we have discussed about date functions... the current month of the existing year. This Java get month example is simply
how to get description for each file
how to get description for each file  hi, how to get description for each file using php or java script..... condtion:two text boxes for each file if the user select 10 file to upload........get the description
how to get session object in simple java class??
how to get session object in simple java class??  i am fallowing...) GroupDetailsDao.java (it is also a simple java class which have the jdbc logic............................ is.................... now i need to get that session object (GroupPojo
Java get Folder Size
Java get Folder Size       In this section, you will learn how to get the size of specified folder.  In the given example, we are going to show you the size
get values from Excel to database
get values from Excel to database   hi i want to insert values from Excel file into database.Whatever field and contents are there in excel file... express 2005. how can i do with java code
Java get Free Memory
Java get Free Memory      ... to get the memory left of being allocated, the method getruntime() returns the runtime object associated with the Java application. freeMemory- This method returns
Java Servlet : Get URL Example
Java Servlet : Get URL Example In this tutorial, You will learn how to get url of servlet. Servlet getRequestURL : getRequestURL() method reconstruct... getRequestURL() method to get current URL. GetURLExample.java package
Java program to get the desktop Path
Java program to get the desktop Path       In this example program we have to get the desktop path of the system. In the java environment we can get the desktop path also
How to get the capacity of ByteBuffer in java.
How to get the capacity  of ByteBuffer in java.     ..., we will discuss how to get the capacity of buffer. The ByteBuffer class...;java ByteBufferCapacity  C:\Work\Bharat\load\ByteBuffercapicity
Java Get Mime Type
Java Get Mime Type       To get the mime type, we have defined FileNameMap interface... in Java.  Go through the given example to find out, how to get mime type.  
parsing XML file to get java object - XML
parsing XML file to get java object  Hello, I'm facing a problem in parsing XML file to get the java object. I've tried to retrieve data from XML... only need to get
how to get the next option - Java Beginners
how to get the next option  i was getting values from the database it was bulk so i want to keep the next option how to do in the jsp  Hi Friend, Please visit the following link: http://www.roseindia.net

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.