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