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 42 43 44 45 46 47 48 49 50 51 52 53 54 | class figure { double d1,d2; figure(double a,double b) { d1=a; d2=b; } double area() { System.out.println("Area of the figure"); return 0; } } class rectangle extends figure { rectangle(double a,double b) { super(a,b); } double area() { System.out.println("Area of rectangle"); return d1*d2; } } class triangle extends figure { triangle(double a,double b) { super(a,b); } double area() { System.out.println("Area of triangle"); return d1*d2/2; } } class runpoly { public static void main(String[] args) { figure f=new figure(45,6); rectangle r=new rectangle(10,30); triangle t=new triangle(10,20); figure a; a=f; System.out.println(a.area()); a=r; System.out.println(a.area()); a=t; System.out.println(a.area()); } } |
Output:
Area of figure
0.0
Area of rectangle
300.0
Area of triangle
100.0
Description :
This is the one stop educational site for all Electronic and Computer students. If you want to learn something new then we are here to help. We work on Microcontroller projects, Basic Electronics, Digital electronics, Computer projects and also in basic c/c++ programs.
#Home #Sitemap #Submit #Terms of Use
Copyright©2011 electrofriends.com All Rights Reserved
Contact:info@electrofriends.com | Powered by Dhyeya