Objective
Today, we're learning about Interfaces. Check out the Tutorial tab for learning materials and an instructional video!
Today, we're learning about Interfaces. Check out the Tutorial tab for learning materials and an instructional video!
Task
The
The
AdvancedArithmetic
interface and the method declaration for the abstract divisorSum(n)
method are provided for you in the editor below.
Complete the implementation of
Calculator
class, which implements the AdvancedArithmetic
interface. The implementation for the divisorSum(n)
method must return the sum of all divisors of .
Input Format
A single line containing an integer, .
Constraints
Output Format
You are not responsible for printing anything to stdout. The locked template code in the editor below will call your code and print the necessary output.
Sample Input
6
Sample Output
I implemented: AdvancedArithmetic
12
Explanation
The integer is evenly divisible by , , , and . Our divisorSum method should return the sum of these numbers, which is . The Solution class then prints on the first line, followed by the sum returned by divisorSum (which is ) on the second line.
Solution :
class Calculator implements AdvancedArithmetic {
public int sum;
Calculator() {
sum = 0;
}
public int divisorSum(int n) {
for(int m = n; m > 0; m--) {
if(n%m ==0) {
sum+= m;
}
}
return sum;
}
}