English

Write a class with the name Perimeter using method overloading that computes the perimeter of a square, a rectangle and a circle. Formula: Perimeter of a square 4*s Perimeter of a rectangle = 2*(1 +b) - Computer Applications

Advertisements
Advertisements

Question

Write a class with the name Perimeter using method overloading that computes the perimeter of a square, a rectangle and a circle. 

Formula: Perimeter of a square 4*s

Perimeter of a rectangle = 2*(1 +b)

Perimeter of a circle = `2"*"22/7"*r"`

Code Writing

Solution

import java.util.*;
class FQ16{
static void Perimeter(int s)
{System.out.println("Perimeter of the square is " + 4 * s);
}
static void Perimeter(double 1, double b)
{double p = 2 * (1 + b);
System.out.println("Perimeter of the rectangle is " + p);
}

static void Perimeter(double r) 
{double p = 2 * (22.0 / 7) * r;
System.out.println("Perimeter of the circle is " + p);
}
public static void main(String jk[])
{ Scanner ob = new Scanner(System.in);
doubler;
System.out.println("Enter the side of the square");
Perimeter(ob.nextInt()); // METHOD CALL
System.out.println("Enter the length,breadth of the rectangle");
Perimeter(ob.nextDouble(), ob.nextDouble()); // METHOD CALL
System.out.println("Enter the radius of the circle");
r = ob.nextDouble();
Perimeter(r); // METHOD CALL
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 5: User - Defined Methods - EXERCISES [Page 339]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 5 User - Defined Methods
EXERCISES | Q VII. 16. | Page 339
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×