- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java program to find the area of a square
A square is a rectangle whose length and breadth are same. Therefore, Area of a rectangle is the square of its length. so, to calculate the area of a square
- Get the length of the square form the user.
- Calculate its square.
- Print the square.
Example
import java.util.Scanner; public class AreaOfSquare { public static void main(String args[]){ int length, area; Scanner sc = new Scanner(System.in); System.out.println("Enter the length of the square ::"); length = sc.nextInt(); area = length* length; System.out.println("Area of the square is ::"+area); } }
Output
Enter the length of the square :: 55 Area of the square is ::3025
- Related Articles
- Java Program to Find Area of Square
- Swift Program to Find Area of Square
- Kotlin Program to Find Area of Square
- Java program to find the area of a rectangle
- Java program to find the area of a triangle
- Java program to find the area of a circle
- Java Program to Find the Area of a Parallelogram
- Java Program to Find the Area of a Trapezium
- Java program to find the square root of a given number
- Find the Area of a Circle in Java Program
- Find the area of a square of 9 cm
- Program to find area of largest square of 1s in a given matrix in python
- Program to calculate the area of an Circle inscribed in a Square
- The area of a square park is $64.516$ square metres. Find its side.
- Java Program to Find the Surface area and Volume of Cuboid

Advertisements