Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
boolean hasLicense();
2
boolean canEvaluate();
3
boolean shouldAbort = false;
4
5
boolean bell;
6
boolean light;
7
8
boolean hasBell;
9
boolean hasLight;
10
11
public class TestBoolean {
12
private boolean isActive;
13
14
public boolean isActive() {
15
return isActive;
16
}
17
}
18
19
20
int i = 42;
21
int k = (i * i) / (42 % 3);
22
for (int j = 12; j < i; i++) {
23
24
}
25
26
int[] liste = new int[7];
27
liste[5] = 5;
28
29
int[][] tabelle = new int[20][30];
30
tabelle[1][2] = 1;
31
32
int[][][] quader = new int[5][7][2];
33
quader[0][0][0] = 0;
34
35