You are viewing a single comment's thread. Return to all comments →
Using Java
class MyCalculator implements AdvancedArithmetic{
@Override
public int divisor_sum(int n) { int sum=0; for(int i=1;i<=n;i++) { if(n%i==0) sum += i;
} return sum; }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Interface
You are viewing a single comment's thread. Return to all comments →
Using Java
public int divisor_sum(int n) { int sum=0; for(int i=1;i<=n;i++) { if(n%i==0) sum += i;
}