class test
{
void display(int x)
{
system.out.println("x value:"+x);
}
void display(int p, float q)
{
system.out.println("p value :" +p);
system.out.println("q value :" +q);
}
}
class extest
{
public static void main(string args[])
{
test ot=new test();
ot.display(25);
ot.display(75,3.25f);
}
}
{
void display(int x)
{
system.out.println("x value:"+x);
}
void display(int p, float q)
{
system.out.println("p value :" +p);
system.out.println("q value :" +q);
}
}
class extest
{
public static void main(string args[])
{
test ot=new test();
ot.display(25);
ot.display(75,3.25f);
}
}
No comments:
Post a Comment