Witshaper is the Professional (Computing Skills, English Learning and Soft Skills) Skill Development Training Center. We provide Professional IT Courses and Soft Skill Training in Dehradun to Students, Employees and organization. Who wish to pursue a career in IT Technology. Witshaper is led by a motivated team of IT experts and Soft Skill Professionals. We provide high quality trainings. Our Emphasis is on giving the practical knowledge to the students, so that they will get to know in depth and never forget what they opt, we provide to the students real learning environment. Witshaper prepares students and professionals to be the part of this growing industry. Be a part of Witshaper and get your dreams successful

Wednesday 20 May 2015

java exaple to show the concept on interface



interface KeepValues{
final double pie=3.14;

public double area(int r, int h);

}

class Cone implements KeepValues{
double ar,l;
public double area(int r, int h){
l=Math.sqrt((r*r)+(h*h));
System.out.println("Value of slant height"+l);
ar=((r*r)*pie*l);
return ar;
}
}

class Cylinder implements KeepValues{
double ar;
public double area(int r, int h){
ar=(2*(pie*(r*r)*h));
return ar;
}
}

public class DisplayArea{
public static void main(String[] args){
double a,b;
Cone c= new Cone();
a=c.area(3,4);
Cylinder cl=new Cylinder();
b=cl.area(7, 6);
System.out.println("Area of Cone is="+a+" Area of Cylinder is="+b);
}
}

No comments:

Post a Comment