-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.java
More file actions
22 lines (20 loc) · 729 Bytes
/
Copy pathTest.java
File metadata and controls
22 lines (20 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.io.Console;
public class Test {
public static void main(String[] args) {
// i,j,k nested test
// int N = 1;
// int count =0;
// for (int i = 0; i <= N; i++) {
// for (int j = 0; j <= N; j++) {
// for (int k = 0; k <= N; k++) {
// if(i<=N) {
// count++;
// System.out.println(count+":| "+ConsoleColours.RED_BOLD_BRIGHT + "i:" + i + ConsoleColours.BLUE_BOLD_BRIGHT + " J:" + j + ConsoleColours.GREEN_BOLD_BRIGHT + " k:" + k + ConsoleColours.RESET);
// } else {
// break;
// }
// }
// }
// }
}
}