MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / Area

Method Area

Programs/overloading.java:4–7  ·  view source on GitHub ↗
(int a)

Source from the content-addressed store, hash-verified

2package overloading;
3class SqRectArea {
4 public void Area(int a) {
5 System.out.println("The side of square = " + a);
6 System.out.println("The area of square = " + (a * a));
7 }
8 public void Area(int l, int b) {
9 System.out.println("Length = " + l);
10 System.out.println("Breadth = " + b);

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected