Write a program to calculate the value of log 10(N) + 25, where user initialises the value of N.
Answers
Answered by
1
public class LogExample
{
public static void main(String[] args)
{
int n = 30;
System.out.println(Math.log10(n)+25);
}
}
Explanation:
Output -
26.477121254719663
Similar questions