10 lines
176 B
Java
10 lines
176 B
Java
class IfTest{
|
|
|
|
public static void main(String[] args){
|
|
|
|
System.out.println(new IfElseStatement().method(true));
|
|
System.out.println(new IfElseStatement().method(false));
|
|
}
|
|
|
|
}
|