-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicsTest.java
More file actions
48 lines (24 loc) · 800 Bytes
/
Copy pathBasicsTest.java
File metadata and controls
48 lines (24 loc) · 800 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
40
41
42
43
44
45
46
47
48
public class BasicsTest {
public static void main(String[] args) {
Basics one = new Basics();
// one.printTo255();
// one.printOddTo255();
// one.printSumTo255();
// int[] arr = {1,3,5,7,9,13};
// one.iterate(arr);
// int[] arr = {1,3,5,7,9,13};
// one.findMax(arr);
// int[] arr = {1,3,5,7,9,13};
// one.findAvg(arr);
// one.arrPush();
// int[] arr = {1,3,5,7,9,13};
// int index = 8;
// one.greaterThanY(arr, index);
// int[] arr = {1,3,5,7,9,13};
// one.square(arr);
// int[] arr = {1, 5, 10, -2};
// one.noNeg(arr);
// int[] arr = {1, 5, 10, 7, -2};
// one.shift(arr);
}
}