Computer Applications

A Student executes the given program segment and it results in 1.0, irrespective of the value of n. State the type of the error, write the correct statement:

void solve(int n) 
{ double power=Math.pow(n, 2/3); 
System.out.println(power); 
}

Java Math Lib Methods

1 Like

void solve(int n) 
{ double power = Math.pow(n, 2.0 / 3);
System.out.println(power); 
}

Answered By

3 Likes


Related Questions