Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
public class QuizIf {
2
public static void main(String[] a) {
3
int monat = 12;
4
5
if (monat == 12) {
6
System.out.println("12");
7
} else if (monat / 2 == 6) {
8
System.out.println("6");
9
} else {
10
System.out.println("2");
11
}
12
}
13
}
14
15