Advertisements
Advertisements
प्रश्न
Design a class to overload a method compare() as follows:
- void compare(int, int): to compare two integers values and print the greater of the two integers.
- void compare(char, char): to compare the numeric value of two characters and print with the higher numeric value.
- void compare(String, String): to compare the length of the two strings and print the longer of the two.
कोड लेखन
उत्तर
public class FQ19{
public void compare(int a, int b)
{ if (a > b)
System.out.println(a);
else
System.out.println(b);
}
public void compare(char ch1, char ch2)
{if (ch1 > ch2)
System.out.println(ch1);
else
System.out.println(ch2);
}
public void compare(String s1, String s2)
{if (s1.length() > s2.length())
System.out.println(s1);
else
System.out.println(s2);
}}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 5: User - Defined Methods - EXERCISES [पृष्ठ ३४०]