Home Answers Viewqa IoC programing

 
 


ahmed
programing
1 Answer(s)      4 years and a month ago
Posted in : IoC

View Answers

April 16, 2009 at 3:43 PM


Hi friend,


Code to help in solving the problem :

import java.io.*;
class NumberExample
{
public static void main(String[] args) throws Exception
{

String string = "";
InputStreamReader input = new InputStreamReader(System.in);
BufferedReader reader = new BufferedReader(input);
// read in user input



int ar[] = new int[4];
int count=1;

for(int i=0;i<ar.length;i++)
{
System.out.println("Enter "+count+" number");
ar[i]=Integer.parseInt(reader.readLine());

count++;
}

int min=ar[0];
int max=ar[0];

for(int i=1;i<ar.length;i++)
{
if(ar[i]<min)
{
min = ar[i];
}
if(ar[i]>max)
{
max = ar[i];
}

}


System.out.println("Min " + min);
System.out.println("Max " + max);

}
}

For read more information,Examples and Tutorials on Java visit to :

http://www.roseindia.net/java/

Thanks









Related Pages:
Java programing
Java programing   need help wrting this Write a program that has an array of 5 Strings, and determines which ones are palindromes (letter-case does not matter). thanks
socket programing in servlet
socket programing in servlet  give me a example to write socket programing in servlet
programing question
programing question  how do i use loops(for,while) to add components in java   Hi Friend, The below code might help you. import java.awt.*; import javax.swing.*; class TextFieldArray extends JFrame{ JLabel l[]=new
Programing Help - Java Beginners
Programing Help  how to design a filebrowser in java "witout using Swing
SOCKET PROGRAMING IN THE JAVA FOR NETWORKING CONCEPT
SOCKET PROGRAMING IN THE JAVA FOR NETWORKING CONCEPT  I WANT TO KNOW ABOUT THE JAVA SOCKET PROGRAMING FROM BASIC LEVEL AND HOW CAN I WORK ON IT I KNOW THE JAVA PROGRAMING.SO PLEASE HELP ME HOW CAN I DO SOCKET PROGRAMING
Java programing help
Java programing help  Can you help me create this program? Write a console program that repeatedly prompts the user to enter data until they type done (any case, Upper, Lower, or Mixed). As they enter the data, assign
javascript programing error - JSP-Servlet
javascript programing error  hi deepak i m using explorer to run javascript program in this there is no option to check error will u plz tell me the way to check error in explorer as we can check with mozila
java programing problem - Java Beginners
java programing problem  Create a class named Movie that can be used with your video rental business. The Movie class should track the Motion picture Association of America rating , ID Number, and movie title with appropriate
guys,, need help,, in java programing,, arrays
guys,, need help,, in java programing,, arrays  create a program where you will input 10 numbers and arrange it in ascending way using arrays
java program - Java Beginners
Java programing environment   From where i can download the Java programming environment
Database programming - Java Beginners
Database programming  How to do a Database programing with Balanced Multiway Tree(B+ Tree,not Binary Tree) in java
question
question  Sir, Please give me a source code for client server socket programing in java

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.