Java Area of Rectangle

How do you find the area of a rectangle in Java?

The area of ​​a rectangle is the amount of space obtained by the rectangle. A rectangle can be defined as a plane shape that has two adjacent sides of length. The 4 angles present in the rectangle are also equal. A rectangle can be divided into 4 equal squares. Each internal angle in a rectangle measures 90 degrees.
The area of ​​a rectangle is the number of square units to fill a rectangle completely.

Algorithm to find the Area of Rectangle

step -1: start.

step -2: import the package

step -3: Create class Area.

step -4: create the main() function

step -5: Create object Scanner obj=new Scanner(String[]args)

step -6: create the integer variable l,h

step -7: create the user input as leangth=obj.nextInt();

step -8: create the user input as height=obj.nextInt();

step -9: Calculate the area of Rectange area=length*height.

step -10: print the output of area.

step -11: end.

Area of a Rectangle in Java With Source Code:

import java.io.*;
import java.util.*;

public class Rectangle

    {
        public static void main(String []args)
        {
        Scanner ob=new Scanner(System.in);
        int l,h;
        System.out.println("Enter lenght of Rectangle: ");
        l=ob.nextInt();
        System.out.println("Enter height of Rectangle: ");
        h=ob.nextInt();
        int Rec=l*h;
        System.out.println("Area of rectangle is: "+Rec);
        }
    }

Output:

PS C:\Users\Pramod\Desktop\MPS>  c:; cd 'c:\Users\Pramod\Desktop\MPS'; & 'c:\Users\Pramod\.vscode\extensions\vscjava.vscode-java-debug-0.31.0\scripts\launcher.bat' 'C:\Program Files\Java\jdk-15.0.2\bin\java.exe' '--enable-preview' '-XX:+ShowCodeDetailsInExceptionMessages' '-Dfile.encoding=UTF-8' '-cp' 'C:\Users\Pramod\AppData\Roaming\Code\User\workspaceStorage\68adb333e7c4b36a52ea53bc8c24e1ec\redhat.java\jdt_ws\MPS_776f50d0\bin' 'Rectangle' 
Enter lenght of Rectangle:
23
Enter height of Rectangle:
32
Area of rectangle is: 736
PS C:\Users\Pramod\Desktop\MPS>
 

Recommended Post:

Find the solution to the salesforce Question.

Pramod Kumar Yadav is from Janakpur Dham, Nepal. He was born on December 23, 1994, and has one elder brother and two elder sisters. He completed his education at various schools and colleges in Nepal and completed a degree in Computer Science Engineering from MITS in Andhra Pradesh, India. Pramod has worked as the owner of RC Educational Foundation Pvt Ltd, a teacher, and an Educational Consultant, and is currently working as an Engineer and Digital Marketer.



Leave a Comment