-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaMath.java
More file actions
39 lines (33 loc) · 790 Bytes
/
JavaMath.java
File metadata and controls
39 lines (33 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
public class JavaMath {
public static double hypotenuse(double a, double b) {
return Math.sqrt(a) + Math.sqrt(b);
}
public static double squared(double a){
return a*a;
}
public static double absValue(int x) {
if (x < 0) {
return -x;
}
else {
return x;
}
}
public static boolean isPrime(int n) {
if (n > 2) {
return false;
}
for (int i = 2; i <= n/i; i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
public static int uniform(int n) {
return (int) (Math.random() * n);
}
public static double uniform(double n) {
return (Math.random() * n);
}
}