fork download
  1. class sample
  2. {
  3. void check(int a)
  4. {
  5. System.out.println("ODD OR EVEN NUMBERS");
  6. System.out.println("*************************");
  7. if(a%2==0)
  8. System.out.println(a+" is even");
  9. else
  10. System .out.println(a+" is odd");
  11.  
  12. }
  13. void check(char c)
  14. {
  15. System.out.println("VOWEL OR NOT");
  16. System.out.println("****************");
  17. switch(c)
  18. {
  19. case 'a':
  20. case 'A':System.out.println(c+" is vowel");
  21. break;
  22. case 'e':
  23. case 'E':System.out.println(c+" is vowel");
  24. break;
  25. case 'i':
  26. case 'I':System.out.println(c+" is vowel");
  27. break;
  28. case 'o':
  29. case 'O':System.out.println(c+" is vowel");
  30. break;
  31. case 'u':
  32. case 'U':System.out.println(c+" is vowel");
  33. break;
  34. default:System.out.println(c+" is not vowel");
  35. }
  36. }
  37. void check(int a,int b)
  38. {
  39. int t;
  40. System.out.println("\t\tSWAPPING");
  41. System.out.println("\t\t********");
  42. System.out.println("Before swapping a and b value is:"+a+"\t"+b);
  43. t=a;
  44. a=b;
  45. b=t;
  46. System.out.println("After swapping a and b value is:"+a+"\t"+b);
  47.  
  48. }
  49.  
  50. void check(int a,int b,int c)
  51. {
  52. System.out.println("\t\t BIGGIST AMONG THREE NUMBERS");
  53.  
  54. System.out.println("Numbers are:");
  55. System.out.println(a+"\t"+b+"\t"+ c);
  56. if(a>b&&a>c)
  57. System.out.println(a+" is grater");
  58. else if(b>c)
  59. System.out.println(b+" is grater");
  60. else
  61. System.out.println(c+" is grater");
  62. }
  63. }
  64. class methodoverloading
  65. {
  66. public static void main(String args[])
  67. {
  68. sample c1=new sample();
  69. c1.check(22);
  70. c1.check('e');
  71. c1.check(10,100,45);
  72. c1.check(22,21);
  73. }
  74. }
  75.  
Success #stdin #stdout 0.2s 59592KB
stdin
Standard input is empty
stdout
ODD OR EVEN NUMBERS
*************************
22 is even
VOWEL OR NOT
****************
e is vowel
		 BIGGIST AMONG THREE NUMBERS
Numbers are:
10	100	45
100 is grater
		SWAPPING
		********
Before swapping a and b value is:22	21
After swapping a and b value is:21	22