convert it to BufferedReader class

convert it to BufferedReader class

import java.util.*; public class method { static Scanner console = new Scanner (System.in);

public static void main (String[] args)
{
    int num1,num2,maximum,minimum; 
    double average;

    System.out.print ("Enter two numbers : ");
    num1=console.nextInt();
    num2=console.nextInt();

    maximum = myMax (num1,num2);
    minimum = myMin (num1,num2);
    average = myAvg (num1,num2);
    System.out.println ("The large number is "+maximum);
    System.out.println ("The small number is "+minimum);
    System.out.println ("The average of the numbers is "+average);

}

public static int myMax (int x,int y)
{
    int maximum;

    if (x >= y)
        maximum = x;
    else
        maximum = y;

    return maximum;
}

public static int myMin  (int x,int y)
{   
    int minimum;

    if (x <=y)
        minimum = x;
    else
        minimum = y;

    return minimum;
}

public static double myAvg (int x,int y)
{
    double average;
    double sum;

    sum = x+y;
    average = sum / 2;

    return average;
}

}

View Answers

January 21, 2011 at 10:53 AM

Hi Friend,

Here is the required code:

import java.io.*;
public class method {
public static void main (String[] args)throws Exception
{
    int num1,num2,maximum,minimum; 
    double average;

    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    System.out.print ("Enter First number: ");
    num1=Integer.parseInt(br.readLine());
    System.out.print ("Enter second number: ");
    num2=Integer.parseInt(br.readLine());

    maximum = myMax (num1,num2);
    minimum = myMin (num1,num2);
    average = myAvg (num1,num2);
    System.out.println ("The large number is "+maximum);
    System.out.println ("The small number is "+minimum);
    System.out.println ("The average of the numbers is "+average);

}

public static int myMax (int x,int y)
{
    int maximum;

    if (x >= y)
        maximum = x;
    else
        maximum = y;

    return maximum;
}

public static int myMin  (int x,int y)
{   
    int minimum;

    if (x <=y)
        minimum = x;
    else
        minimum = y;

    return minimum;
}

public static double myAvg (int x,int y)
{
    double average;
    double sum;

    sum = x+y;
    average = sum / 2;

    return average;
}
}

Thanks


January 23, 2011 at 11:27 AM

hi friend!! wahh.. a bit same but more complicated.. anyway,, thanks a lot yah!! :)









Related Tutorials/Questions & Answers:
convert it to BufferedReader class
convert it to BufferedReader class  import java.util.*; public class... is the required code: import java.io.*; public class method { public static void main...; double average; BufferedReader br=new BufferedReader(new InputStreamReader
Convert InputStream to BufferedReader
Convert InputStream to BufferedReader   ... from a input stream. java.io. BufferedReader class provides... System.in) class. This data is in the form of bytes. To convert
Advertisements
BufferedReader
BufferedReader  What is BufferedReader used for?   BufferedReader read text from a character-input stream, buffering characters so... = window.adsbygoogle || []).push({}); import java.io.*; class
Bufferedreader example
Bufferedreader example Here we have provided the best links for Bufferedreader class examples. You can use Bufferedreader class for buffering while reading... of Bufferedreader class Bufferedreader tutorial Bufferedreader Thanks
Convert String to Class - JSP-Servlet
Convert String to Class  Hi all, I am using Quartz as a scheduler.... Reading job name, class name, day & time using xml file only. Problem is while reading class name, retrieve as a string format but Quartz required in "Class" format
Java IO BufferedReader
Java IO BufferedReader In this section we will discuss about the BufferedReader class in Java. BufferedReader class in java.io package is used for read... be specified. In most of the purposes default size of buffer is used. BufferedReader
What is the use of BufferedReader in Java program?
Learn about BufferedReader class and understand "What is the use... of BufferedReader class in Java. In Java there are classes for reading... the charset to decode the byte into characters. The BufferedReader class provides
BufferedReader in java
, this class contain BufferedReader under the package java.io.BufferedReader. This class read text from input stream by buffering character so that it can read...BufferedReader in java In this section you will learn about BufferedReader
Java bufferedreader
bufferedreader class? How bufferedreader can be used to read a file? Thanks   In Java the BufferedReader class is used to read the stream successfully with buffering. The BufferedReader class provides efficient reading from the input
Convert Class File to .java File - Java Beginners
Convert Class File to .java File  Sir, How To Convert .class file to .java File. Please Help me  Use cavaj software ,which is freeware, to convert .class to .java  Use jd-gui to convert ur .class to .java
Read bufferedreader
Read bufferedreader  Tell me the example of Read file using bufferedreader. Thanks   Read the tutorial Reading file using BufferedReader class. Thanks
About BufferedReader
About BufferedReader   I have created FileInputStream fstream..."); DataInputStream in = new DataInputStream(fstream); BufferedReader bfr = new BufferedReader(new InputStreamReader(in)); for(int i=0;i<10;i++) { String Str
Why bufferedreader is used in java?
of BufferedReader class in Java? why bufferedreader is used in java? It will be great if anyone can give me the example code of BufferedReader class in java. Thanks   Hello, The BufferedReader class is present in the java.io package
How to convert many class files into one exe file?
How to convert many class files into one exe file?  How to convert class files into one exe file? I have done my project in java.i want to know how to convert it into .exe file? plz reply fast. Thnx in Advance. Happy Pongal
How to convert many class files into one exe file?
How to convert many class files into one exe file?  How to convert class files into one exe file? I have done my project in java.i want to know how to convert it into .exe file? plz reply fast. Thnx in Advance. Happy Pongal
how to convert jsp page to class file - JSP-Servlet
how to convert jsp page to class file  hai. iam doing online banking project by using jsp.i completed all the jsp pages.next can you tell me how to convert these jsp pages to class files with example and where to copy these class
Cannot convert 1/23/13 1:18 PM of type class java.util.Date to class java.sql.Timestamp
Cannot convert 1/23/13 1:18 PM of type class java.util.Date to class java.sql.Timestamp  I keep receiving this error every time i select date through jsf calendar, I declared my variable as Timestamp not date. my db is postgresQl
Scanner vs. BufferedReader
should use the BufferedReader class. Check the details at What is the fastest... text files also which is around 7 to 10 GB. So, which class is to be used to read
BufferedReader in Java
. BufferedReader class in Java is also used to read the data in buffer. Here we... of BufferedReader in Java to read line: import java.io.*; public class...BufferedReader in Java BufferedReader in Java is used to to read characters
How To Read File In Java with BufferedReader
How To Read File In Java with BufferedReader class - example code This tutorial shows you how you can read file using BufferedReader class in your program. This tutorial is using the BufferedReader class for reading simple text file
what is the default buffer size for bufferedreader
of the BufferedReader class is 8192 chars, which is sufficient for general programming. Developers around the world is using java.io.BufferedReader class to create... is the default buffer size for bufferedreader? Is there any example of reading the big
How to Read a file line by line using BufferedReader?
. Thanks   Hi, You are right you can use the BufferedReader class... class. The BufferedReader is present in java.io package. You can import...How to Read a file line by line using BufferedReader?  Hello Java
class
class  Is a class a subclass of itself
class
is a class to represent a country in medal tally. It has an attribute of country... medals. In this class, you should also define constructors, and assessor, mutator methods. Task 2 MedalTally.java is a class to model a medal tally, containing
Class
Class, Object and Methods       Class : Whatever we can see in this world all the things... is termed as a class. All the objects are direct interacted with its class
Java convert string to InputStream
used the BufferedReader class to read and display the converted InputStream.ADS...Java convert string to InputStream In this section, you will learn how to convert string to Inputstream. In one of the previous sections, we have discussed
Read/Convert an inputStream to a String
Read/Convert an inputStream to a String  Hi, I have an input stream in Java and convert it to a String. what is the best code for for this? How to Read/Convert an inputStream to a String? My object is of java.io.InputStream
Convert Text File to PDF file
Convert Text File to PDF file  Here is the way how to covert your Text file to PDF File, public class TextFileToPDF { private static void doReadWriteTextFile() { try { BufferedReader inputStream = new
Convert String into date
Convert String into date In this example we are going to convert String into date. SimpleDateFormat is a concrete class for formatting the dates which... convert a string into Date format. It also provide some of the methods like
Super class of an Exception class
Super class of an Exception class  hello,,, What is super class of an Exception class?   hii,,ADS_TO_REPLACE_1 the super class of an exception is throwable class. and the super class of an throwable class
Java Convert Octal to Binary
Java Convert Octal to Binary In this tutorial, you will learn how to convert... of different numbers. You can convert and decimal to octal, decimal to binary... number to binary. Example:ADS_TO_REPLACE_1 import java.io.*; class
Convert Text File to PDF file
Convert Text File to PDF file  import java.io.BufferedReader; import...; public class TextFileToPDF { private static void doReadWriteTextFile() { try { BufferedReader inputStream = new BufferedReader(new
convert to GUI
convert to GUI  import java.util.Scanner; public class Exam { public static void main (String args[]) { int numberStudent, mark, markAplus = 0... Scanner(System.in); System.out.print("Please enter number of students in class
convert to decimal
convert to decimal  f42a4 convert to decimal by using java
Number Convert - Java Beginners
Some value like 234.Value can be convert into Two Hundred and Thirty Four Rupees... import java.io.*; public class NumberToWord { String string; String... passString(int number){ int num, q ; if (number < 10 ){ displayOutput(a[number
Convert array to Vector
Convert array to Vector       In this section we will learn how to convert an array to vector... to store object data type and object can be of String or of any class. In the code
class file
class file  how to convert java classfile into java sourcefile
convert into hql
convert into hql   String sqlListSurveys= "select distinct s.surveyAutoID, s.surveyTitle, date(s.modifiedOn) modifiedOn, s.createdOn, " + "( CASE s.surveyState WHEN '0' THEN 'Created' WHEN '1' THEN 'Published
Convert - Applet
Convert   Hello dear colleques I would like to ask about some converting program currently i am doing converting program my graduation report. I came from mongolia and I live in korea now. therefore my supevisor gave
convert jpeg to gif - Swing AWT
convert jpeg to gif  i want to convert jpeg file to gif file. in the roseindia's already existing program,i can convert gif to jpeg.But i cant convert jpeg to gif. help me plz....  Hi friend, import java.io.
Convert Byte to Hexadecimal
Convert Byte to Hexadecimal       In this section, We are going to convert a byte value... java.io.*; import java.lang.*; public class ByteToHexa{   public static void main
Class
Class       This section explores the concept of a class in reference to object oriented programming techniques. A class defines the properties of  objects and methods used
Convert this code to GUI - Java Beginners
Convert this code to GUI  I have written this.i need to convert... java.awt.event.*; public class CompString{ public static void main(String[] args) { System.out.println("Enter two strings:"); BufferedReader bf = new
Convert Character into Integer
Convert Character into Integer       In this section, you will learn to convert the character into a integer. The java.lang package convert provides the facility to convert
Explain final class, abstract class and super class.
Explain final class, abstract class and super class.  Explain final class, abstract class and super class.   Explain final class, abstract class and super class. A final class cannot be extended. A final class
.class and .tld
.class and .tld  how to create .class and .tld file
class loaders
class loaders   Explain static and dynamic class loaders
class file
class file  How to create class file in jsf easily
Convert Integer to Double
Convert Integer to Double        In this section, you will learn to convert an integer... a class named "IntegerToDouble" for java component. Program takes
Convert Decimal to Integer
Convert Decimal to Integer      ... into an integer. The java.lang package provides the functionality to convert...() method gets an integer value as a string. This integer class wraps a value

Ads