Write a program to divide two operands with the use of "/" operator.
Anonymous
public double divide (int a, int b) { double logValue = Math.log10(a) - Math.log10(b); return Math.pow(10, logValue); }
Check out your Company Bowl for anonymous work chats.