Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class Quiz {
2
public static void main(String[] args) {
3
String a = "";
4
String b;
5
if (a == b) {
6
System.out.println("Nyan Cat");
7
} else {
8
System.out.println("42");
9
}
10
}
11
}
12
13