Write a program that displays the results of the following evaluations based on the number entered by
the user.
1.Natural logarithm of the number
Answers
Answered by
0
Answer:
package com.java2novice.math;
public class MyLogEx {
public static void main(String a[]){
System.out.println("Natural logarithm value of 2 is: "+Math.log(2));
System.out.println("Natural logarithm value of 10 is: "+Math.log(10));
System.out.println("Natural logarithm value of 15 is: "+Math.log(15));
}
}
I WISH IT HELPS YOU
IF YES PLS MARK AS BRAINLIEST
IF NO DON'T DELETE THE QUESTION PLS PLS
Similar questions