-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindAreaMain.java
41 lines (39 loc) · 936 Bytes
/
FindAreaMain.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import java.util.Scanner;
interface Shape{
int Area();
}
class Rectangle implements Shape{
int l,b;
Rectangle(int l,int b)
{
this.l=l;
this.b=b;
}
@Override
public int Area() {
return l*b;
}
}
class Square implements Shape{
int s;
Square(int s)
{
this.s=s;
}
@Override
public int Area() {
return s*s;
}
}
class FindAreaMain {
public static void main(String[] args) {
Scanner ob=new Scanner(System.in);
System.out.println("Enter length and breadth of Rectangle: ");
Rectangle r=new Rectangle(ob.nextInt(),ob.nextInt());
System.out.println("Enter side of Square: ");
Square s=new Square(ob.nextInt());
System.out.println("Area of Rectangle: "+r.Area());
System.out.println("Area of Square: "+s.Area());
ob.close();
}
}