Skip to content

Commit 32d0351

Browse files
authored
update
added comments and variable names are more simpler now
1 parent b7a9d0d commit 32d0351

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

Misc/root_precision.java

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,27 @@
77
public class Solution {
88

99
public static void main(String[] args) {
10+
//take input
1011
Scanner scn = new Scanner(System.in);
1112

12-
int N = scn.nextInt();
13-
int P = scn.nextInt();
13+
int N = scn.nextInt(); //N is the input number
14+
int P = scn.nextInt(); //P is precision value for eg - P is 3 in 2.564 and 5 in 3.80870.
1415

1516
System.out.println(squareRoot(N, P));
1617
}
1718

1819
public static double squareRoot(int N, int P) {
19-
double sqrt = 0;;
20-
21-
// Write your code here
22-
double root = Math.pow(N, 0.5);
23-
int pre = (int) Math.pow(10, P);
24-
root = root * pre;
25-
sqrt = (int)root;
26-
return (double)sqrt/pre;
20+
double rv = 0; //rv means return value
21+
22+
double root = Math.pow(N, 0.5);
23+
24+
//calculate precision to power of 10 and then multiply it with root value.
25+
int precision = (int) Math.pow(10, P);
26+
root = root * precision;
27+
/*typecast it into integer then divide by precision and again typecast into double
28+
so as to have decimal points upto P precision */
29+
30+
rv = (int)root;
31+
return (double)rv/precision;
2732
}
2833
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy