mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
11 lines
260 B
Java
11 lines
260 B
Java
public class QuizIf {
|
|
public static void main(String[] args) {
|
|
float a = 0.1f;
|
|
float b = 0.1f;
|
|
if (0.01 == a * b) {
|
|
System.out.println("Alpha");
|
|
} else {
|
|
System.out.println("Beta");
|
|
}
|
|
}
|
|
}
|