how to calculate max and min in the loop

how to calculate max and min in the loop

View Answers

August 11, 2008 at 1:49 PM

import java.io.*;
public class max_min1
{

public static void main(String a[]) throws IOException
{
int max,min;
max=Integer.parseInt(a[0]);
min=Integer.parseInt(a[0]);
for(int i=0;i<a.length;i++)
{
if(Integer.parseInt(a[i])<min)
min=Integer.parseInt(a[i]);
if(Integer.parseInt(a[i])>max)
max=Integer.parseInt(a[i]);
}
System.out.println("MAX: "+max+" MIN: "+min);
}
}

August 11, 2008 at 1:53 PM

here...a is an array....the data type is String....
This pgm takes values as command line...
the first value is assignd to both min and max variables....
now, in a loop...till the end of the array...check each values against the max and min variables....then assign accordding to the comparison...
we have to convert this array values into integer.

August 11, 2008 at 2:08 PM

Hi friend,

Import the java input output packages

import java.io.*;



public class MaxMinFun {
public static void main(String[] args) throws IOException
{

// Max Number to be inputted

System.out.println("Enter Number to be input: ");
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String str = in.readLine();

// Enter the Number and store it in array;

int arlen = Integer.parseInt(str.toString());
int[] arr = new int[arlen];
for(int i=0;i<arlen;i++)
{
str = in.readLine();
arr[i] = Integer.parseInt(str.toString());
}

//code to calculate the maximum number :

int arrayMax[]= arr;
int max = arrayMax[0];
for (int i=0; i<arrayMax.length; i++)
{
if(max<arrayMax[i])
{
max = arrayMax[i];
}
}
System.out.println("max = " + max);

//code to calculate the minimum number :

int arrayMin[]= arr;
int min=arrayMin[0];
for (int i=1; i<arrayMin.length; i++)
{
if(min>arrayMin[i])
{
min = arrayMin[i];
}
}
System.out.println("min = " + min);

}
}

Thanks



August 11, 2008 at 2:08 PM

is it the answer u r looking for....
Then if u got a better one, plz inform me also...
thanks and reg..
prashu..
[email protected]









Related Tutorials/Questions & Answers:
how to calculate max and min in the loop - Java Beginners
how to calculate max and min in the loop  thanks coz giving me... and min value in the loop. the input is from the user. could u teach me. thanks... main(String a[]) throws IOException { int max,min; max=Integer.parseInt
how to calculate max and min - RUP
how to calculate max and min  hye!i'm a new for the java and i want to ask a question . Could anyone help me to teach how to calculate the maximum... function max and min in java. public class MathMaxMin { public static
Advertisements
Using Min, Max and Count on HQL.
Using Min, Max and Count on HQL.  How to use Min, Max and Count on HQL
ModuleNotFoundError: No module named 'min-max'
-max' How to remove the ModuleNotFoundError: No module named 'min-max...ModuleNotFoundError: No module named 'min-max'  Hi, My Python... to install padas library. You can install min-max python with following command
ModuleNotFoundError: No module named 'min-max'
-max' How to remove the ModuleNotFoundError: No module named 'min-max...ModuleNotFoundError: No module named 'min-max'  Hi, My Python... to install padas library. You can install min-max python with following command
How to calculate minimum in Hibernate using the min() Function
How to calculate minimum in Hibernate using the min() Function The min... will teach you how to use the HQL min() function in your Hibernate based.... In this tutorial we will use the min() function in Hibernate and run
Mysql Min Max
Mysql Min Max       Mysql Min Max is useful to find the minimum and maximum records from a table... Mysql Min Max. To understand and grasp the example we create a table 'employee
Example of Average, Sum, Min and Max functions in MySQL
Example of Average, Sum, Min and Max functions in MySQL  Hi, How to use the aggregate functions like Average, Sum, Min and Max in MySQL? Thanks... in set (0.00 sec) mysql> select max(email_count) from email
hibernate criteria Max Min Average Result Example
hibernate criteria Max Min Average Result Example In this Example, We... the Projections class max, min ,avg methods. Here is the simple Example code files...("Max Salary is : "); System.out.print(row[i]); System.out.printf("\n
How to install cocoapods in Max?
How to install cocoapods in Max?  How to install cocoapods on MacOSx? Tell me the easiest method. Thanks   Hi, Use following command: sudo gem install cocoapods Thanks   Hi, Here is the video instruction
Max()
Max()  How to find maximum values A101,A107,A108 from a table in sql
Max()
Max()  How to find maximum values A101,A107,A108 from a table in sql
How to get max date in Hibernate?
How to get max date in Hibernate?  Hi, Tell the code to get the max... in Hibernate for getting the max date. Here is example code: Projections.max("addmision_date") Check the complete source code at Hibernate Criteria Max Date Example
How to write a loop and a while loop
How to write a loop and a while loop  How do I write a 1 loop and a 1 while loop for the example code: public boolean isTheFirstOneBigger (int num1, int num2) { if (num1 > num2) { return true
How to calculate attending hours?
How to calculate attending hours?  I need to calculate attending hours of a employee in a day in my project to make their monthly salary . By using work starting time and ending time. How should I do it using Date class? Or any
How to calculate days in a year
How to calculate days in a year  Hi, How to calculate no of days in a year? I want a program that calculates no of days in a year by specifying year a parameter. Thanks   Hi, Please check the thread example
How to calculate the average in Hibernate?
How to calculate the average in Hibernate?  Hi, I have to calculate the average in Hibernate. How to calculate the average in Hibernate? Thanks   Hi, You can use the project in Hibernate. Here is the example code
Find max and min value from Arraylist
Find max and min value from Arraylist In this tutorial, you will learn how... max() and min() respectively. Here is an example that consists of ArrayList of integers and using the max and min methods of Collections class, we have find
loop to input multiple points to calculate final distance and speed
loop to input multiple points to calculate final distance and speed  import java.util.Scanner; public class Travel { private double time; private double distance; public Travel() { time=0; distance=0
how to calculate the price on the option box
how to calculate the price on the option box  How i calculate the value when i using a option box with 2 option..first option i used for product name... to calculate this value
how to calculate EMI of the loan
how to calculate EMI of the loan   package carloanapp; import java.io.FileWriter; import java.io.IOException; public class CarLoan { Customer gObjCustomer = null; double gDbRequestedLoanAmount = 0; double
How to calculate average of array in Java?
How to calculate average of array in Java?  Hi, I have an integer array and I want to calculate the average of the values in it. How to calculate... the elements of array and then calculate sum. Then divide it with the length
how many max. arguments we pass to the any function ? how many max. arguments we pass to the any function ?
how many max. arguments we pass to the any function ? how many max. arguments we pass to the any function ?   how many max. arguments we pass to the any function
How to calculate area of rectangle
How to Calculate Area of Rectangle       In this section we will learn how to calculate area... In this program explain the static method how to display the rectangle values. First
How to calculate Date Difference in Java?
How to calculate Date Difference in Java?  Hi, I have two dates variable. How to calculate Date Difference in Java? Thanks   Hi, You can use the Calendar class for calculating the date difference in Java. Get data
how to calculate the employee tax - JSP-Servlet
how to calculate the employee tax  How to calculate the employee tax.Can u please send to me calculation tables
How to calculate sum of HH:MM:SS Format?
How to calculate sum of HH:MM:SS Format?  how to calculate sum of HH:MM:SS? for example: 10:25:36+26:50:56 calculate sum of these values
How to use list in for loop in Python
How to use list in for loop in Python  Hi, I have list in Python and I want to list down all the items using for loop. How to use list in for loop in Python? Thanks
how to calculate salary of all the employees 10%extra then actual salary - SQL
how to calculate salary of all the employees 10%extra then actual salary  how to calculate salary of all the employees 10% extra then actual salary  Hi Friend, We are providing you a code that will calculate
how many max. arguments we pass to the any function ?
how many max. arguments we pass to the any function ?   how many max. arguments we pass to the any function
Min Value
Min Value   How to access min value of column from database table... min(id) from QuestionModel result_info"; Query query = session.createQuery(selectQuery); System.out.println("Min Value : " +query.list().get(0
How to calculate number of weeks in a specified month
How to calculate number of weeks in a specified month  I am create one program that contain three combo box. 1.cmbyear 2.cmbmonth 3.cmbweek i am select year and month. then automatically calculate number of weeks in a specified
How to calculate area of triangle
.style1 { margin-right: 0px; } How to Calculate...; In this section we will learn how to calculate area of triangle. We... in this program we will fine the how to the display massage the area
How to append dictionary to a list in loop
to achieve this? How to append dictionary to a list in loop? Thanks  ...How to append dictionary to a list in loop  Hi, I have to write a program in Python for appending dictionary to list in for loop. I will be creating
for loop
for loop  how to performs the for loop when 2 inputs given like displays the triangle shape and how to take initial values or declaration values plz explain in detailed ex. 1 12 123 1234
How does the Java for each loop work?
How does the Java for each loop work?  How does the Java for each loop work
javascript max size
javascript max size   How to retrive Max size in JavaScript
loop
loop  what is the difference b/w do while,while and for loop..with example
loop
loop  i want to write my name(inder) through loop in java using star
for loop
for loop  what is for loop   Loops are used for iteration... for a number of times it is finite loop and if repetition is done infinitely it is infinite loop. Java provides several loop structures for iteration. Those
ModuleNotFoundError: No module named 'min'
ModuleNotFoundError: No module named 'min'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'min' How to remove the ModuleNotFoundError: No module named 'min' error
For loop
For loop  Hi! Please explain the following loop: for(i=0;i<a[j];i++) THANX!!   Please reply as soon as possible
How to use for loop in jsp
How to use 'for' loop in jsp page ? This is detailed java code that shows how to use 'for' loop in jsp page. 'if' statement is used to test conditions while 'for' loop is used to define a loop that reiterates statements. It specifies
Loop
to understand a loop my quesiton are: what du i do wrong in my code since.... (made in blueJ) Class Loop public void loopUpGeneral(int start, int stop... dk  Hi, Please check the for loop once again: for (int i
for loop
for loop  using only two for loop how can print below numbers 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 8 8 8 8 8 8 8 8 7 7 7 7 7 7 7 6 6 6 6 6 6 5 5 5 5
for loop
for loop  using only two for loop how can print below numbers 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 8 8 8 8 8 8 8 8 7 7 7 7 7 7 7 6 6 6 6 6 6 5 5 5 5
How to use 'for' loop in jsp page?
How to use 'for' loop in jsp page?       This is detailed java code that shows how to use 'for' loop in jsp page. 'if' statement is used to test conditions while
How to use 'for' loop in jsp page?
How to use 'for' loop in jsp page?       This is detailed java code that shows how to use 'for' loop in jsp page. 'if' statement is used to test conditions while
how to i convert this case to loop...please help.....
how to i convert this case to loop...please help.....   */ import..."); System.out.println("| l. Check for empty list"); System.out.println("| q. Quit...(); case 'q': Quit(); case 'Q': Quit(); break
how to i convert this case to loop...please help.....
how to i convert this case to loop...please help.....   */ import..."); System.out.println("| l. Check for empty list"); System.out.println("| q. Quit...(); case 'q': Quit(); case 'Q': Quit(); break

Ads