Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
public class QuizIf {
2
public static void main(String[] a) {
3
float a = 0.1;
4
float b = 0.1;
5
if (0.01 == a * b) {
6
System.out.println("Alpha");
7
} else {
8
System.out.println("Beta");
9
}
10
}
11
}
12
13