-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLooping.java
More file actions
40 lines (36 loc) · 863 Bytes
/
Looping.java
File metadata and controls
40 lines (36 loc) · 863 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
package brain;
import java.util.*;
public class Looping {
public static ArrayList<Integer> loops(ArrayList<Integer> ray, ArrayList<String> first, int counter){
Scanner a = new Scanner(System.in);
ArrayList<Integer> arr = ray;
int count = counter;
while (ray.get(count) != 0) {
for (int i = 1; i < first.size()-1; i++) {
switch(first.get(i)) {
case ">":
arr.add(0);
count++;
break;
case "<":
counter--;
break;
case "+":
arr.set(count, arr.get(count)+1);
break;
case "-":
arr.set(count, arr.get(count)-1);
break;
case ".":
System.out.println(arr.get(count));
break;
case ",":
System.out.print("Enter a number: ");
arr.set(count, a.nextInt());
break;
}
}
}
return arr;
}
}