How to calculate perimeter of Rectangle using it's length and width. - Java Language Basics

Java examples for Language Basics:int

Introduction

Perimeter of a rectangle is 2 * (length + width)

Demo Code


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
public class Main {
 
        public static void main(String[] args) {
               //from  w  w  w  .  j a  v a  2 s. c  om
                int width = 0;
                int length = 0;
                       
                try
                {
                        //read the length from console
                        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
                       
                        System.out.println("Please enter length of a rectangle");
                        length = Integer.parseInt(br.readLine());
 
                        //read the width from console
                        System.out.println("Please enter width of a rectangle");
                        width = Integer.parseInt(br.readLine());
                       
                       
                }
                //if invalid value was entered
                catch(NumberFormatException ne)
                {
                        System.out.println("Invalid value" + ne);
                        System.exit(0);
                }
                catch(IOException ioe)
                {
                        System.out.println("IO Error :" + ioe);
                        System.exit(0);
                }
               
                int perimeter = 2 * (length + width);
               
                System.out.println("Perimeter of a rectangle is " + perimeter);
        }
               
}

Result


Related Tutorials