Implement a class Calculator with the method mentioned below.
Method Description
findAverage()
Calculate the average of three numbers
Return the average rounded off to two decimal digits
Test the functionalities using the provided Tester class.
Code:
class Calculator {
// Implement your code here
}
class Tester {
public static void main(String args[]) {
Calculator calculator = new Calculator();
// Invoke the method findAverage of the Calculator class and display the average
}
}