-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKata.java
More file actions
92 lines (56 loc) · 1.57 KB
/
Copy pathKata.java
File metadata and controls
92 lines (56 loc) · 1.57 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
public class Kata{
static int factorial(int userInput){
int factorialValue = 1;
for(int count = userInput; count > 0; count--){
factorialValue *= count;
}
return factorialValue;
static int divide(int number1, int number2){
int quotient;
if (number2 == 0){
quotient = 0;
}else{
quotient = number1 / number2;
}
return quotient;
static boolean squareRooter(int userInput){
double square = Math.pow(userInput, 0.5);
int squareRoot = (int) square;
if (squareRoot * squareRoot == userInput){
return true;
}else
return false;
static int subtraction(int number1, int number2){
int subtract;
if (number1 > number2){
subtract = number1 - number2;
}else{
subtract = number2 - number1;
}
return subtract;
static String primeNumber(int userInput){
for(int count = 2; userInput > count; userInput--){
if (userInput % 2 != 0){
return "true";
}else{
return "false";
static int square(int userInput){
int squareOfNumber = userInput * userInput;
return squareOfNumber;
static int numberOfFactors(int userInput){
int factors = 0;
for(int count = userInput; count > 0; count--){
if(userInput % count == 0){
factors++;
}
}
return factors;
static String evenOdd(int userInput){
if (userInput % 2 == 0){
return "true";
}else{
return "false";
}
}
}
}