Area Of Square Example Java Program
Definition
In classical times, the second power was described in terms of the area of a square, as in the above formula. This led to the use of the term square to mean raising to the second power. Thus the area of the square is twice the length of the square.
Formula
The area of a square is written as, A=s^2 where, A=Area s=side of the square
Area Of Square Example Program
import java.util.Scanner; class AreaOfSquare{ static Scanner in = new Scanner(System.in); public static void main(String args[]){ System.out.print("Enter the length: "); int length = in.nextInt(); int area=length*length; System.out.println( "The area of the square is:"+area) ; } }
Sample Output
Output is: Enter the length: 4 The area of the square is:16
Calculation Programs
- Area Of Circle Example Java Program
- Odd Or Even Example Java Program
- Swap With Variable Example Java Program
- Swap Without Variable Example Java Program
- Leap Year Or Not Example Java Program
- Factorial Example Java Program
- LCM Example Java Program
- GCD Example Java Program
- Simple Calculator Example Java Program
- Multiplication Table Example Java Program
- Palindrome Number Example Java Program
- Area Of Rectangle Example Java Program
- Palindrome String Example Java Program
- Check whether the given number is Armstrong number or not Example Java Program
- Armstrong Number In A Particular Range Example Java Program
- Create Matrix Example Java Program
- Matrix Addition Example Java Program
- Matrix Subtraction Example Java Program
- Matrix Multiplication Example Java Program
- Transpose Of A Matrix Example Java Program
- Square Root Example Java Program
- Area Of Square Example Java Program
- Square Root Without InBuilt Functions Example Java Program
- Twin Prime Example Java Program
- Circumference Of Circle Example Java Program
- Sum Of Three Numbers Example Java Program
- Largest Of Three Numbers Example Java Program
- Smallest Number Example Java Program
- Average of n numbers Example Java Program
- Prime Number Example Java Program
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Twin Prime Example Java Program
- Heap Sort Example Java Program
- Compile Time Polymorphism Example Java Program