Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials:
 

Software Solutions and Services
 

 
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments
 
Write a program for calculating area and perimeter of a rectangle 
 

In this section, you will learn how to calculating area and perimeter of a rectangle.

 

Write a program for calculating area and perimeter of a rectangle

                         

If you are a newbie in Java programming then our tutorials and examples will be helpful in understanding Java programming in the most simplest way. Here after reading this lesson, you will be able to write program for calculating the area and perimeter of a rectangle. 

First of all create a class named RecArea under Java.io package. Now define two integer variable 'l' and 'w'. As the program will be based on keyboard numerical input, it is important for every programmer to use correct data without any mistake. In this case the exception methods like try/catch mechanism helps in detecting user input errors. So before starting the functional code, enclosed it with try clause so that any error in the statement causes the execution of the catch clauses. 

Now create an abstract buffer class which is the super class of all classes and represents a stream of input bytes.  The InputSreamReader reads the character stream and stores it in the buffer class. Now use parseInt for both length and width of the rectangle. This is an instance of class method and is used to convert a string to an integer. Define the area as l*w and perimeter as 2*(l+w) and in the end use the catch exception. 

Now compile and run the program and input the value as you see the message and get the ultimate result. If you find any kind of error, then check the whole program again. 

Here is the code of the program:

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

    int l=0;
    int w=0;

    try{
      
      BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in));
      System.out.println("Enter length of rectangle : ");
      l = Integer.parseInt(br1.readLine());
      System.out.println("Enter width of rectangle : ");
      w = Integer.parseInt(br1.readLine());
      int area = l*w;
      System.out.println("Area of Rectangle : "+area);
      int perimiter = 2*(l+w);
      System.out.println("Perimeter: " + perimiter);

    }catch(Exception e){System.out.println("Error : "+e);}

  }
  }

Download this example.

                         

» View all related tutorials
Related Tags: c com console io display command ole line this war example exam argument e rating it back comma demo li

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

4 comments so far (
post your own) View All Comments Latest 10 Comments:

This site has a good tutorial. i am beginner in java.
i have learn very good tips in this site. i am a php developer.

Posted by Govind on Friday, 08.31.07 @ 18:36pm | #24621

this code snippet is awesome
i can get the clear idea of user input functions
but it could be better if you would show different method of implementing the same

than

Posted by ramesh on Saturday, 06.2.07 @ 13:44pm | #18011

Hi,
Dear Karthik!
I got your problem [BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in))]. You visit the following url for better understanding to this.
You can also take data from the keyboard through command line.

For example:

int a = Integer.parseInt(args[0]), int b = Integer.parseInt(args[1]) and so on.]

Read more: [url = http://www.roseindia.net/java/example/java/io/ReadStandardIO.shtml] BufferedReader class[/url]

vinod kumar

Posted by vinod kumar on Tuesday, 03.6.07 @ 19:08pm | #10862

I am lil bit confused at the usage of
BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in))

is there any other possibility with out using this?

Posted by karthik on Monday, 02.26.07 @ 14:11pm | #9650

Training Courses
Tell A Friend
Your Friend Name
Website Designing Services
 
Web Designing Packages From $150!
 
Website Designing Company Web Hosting
 
Website Designing Quotation
 
Search Tutorials:

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.