answersLogoWhite

0


Best Answer

Assume that the greatest number is the first element (subscript zero). Compare with each element in the array (starting with subscript one), and every time you find one that is greater than the greatest so far, set your variable "greatest" to this number.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you find greatest no using array in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are benefits of array in java?

array example in java


Where can one find a tutorial on java string array?

There are many ways to find tutorials on Java string array. You can purchase the digital tutorials at a local computer store. There are also books you can check out at your local library.


How do you find max value out of anonymous array in java?

java is very most important language in computer field. .net is also useful


Can ragged arrays created by using java?

I assume you mean that you have a number of rows, and that not all rows have the same number of "cells". Yes, in Java a two-dimensional array is implemented as an array of arrays (each item in the top-level array is, in itself, an array); a 3-dimensional array is an array of arrays of arrays, etc.; and there is no rule stating that all secondary (etc.) arrays must have the same number of elements.


Prog to display array element?

Java solutionFortunately, Java has a number of useful functions in the java.util.Arrays class for us.A call to...System.out.println(java.util.Arrays.toString(array));...will print out any array.


How does one initialize a byte array in Java?

One can get information about how to initialize a byte array in java on the website stackoverflow dot com. That website can learn one a lot about java.


How do you swap rows in 2 dimensional array in Java?

[]temp = array[1] array[2]=array[1] array[1]=[]temp


Does java array have boundary check?

yes


Where can one find an array of different java application uses?

There are a number of sites that list the many uses of Java applications. The official Java website is one of these sites. Alternatively, one may also find this information at the web domain DynamicDrive.


What is the Java program for sorting an array?

Java has a very efficient built in implementation of quick sort. You can use it on any array of primitives or Comparable Objects by invoking Arrays.sort(<array>) See related link.


What are associative arrays in Java programming language?

Java does not support associative arrays. However, you can achieve the same thing using a map.


What is array in structures?

array is used to store the ame datatypes syntex: int array[]=new int[size]; dynamic declaration of array insertion array[1]=20; 2nd way: int array[]={10,20,30}; *important:- int array[20]={20,30,49,....} this way is wrong in java as this is static way and in java all is done dynamically