15 lines
206 B
Plaintext
15 lines
206 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.lang.Boolean;
|
||
|
import java.lang.String;
|
||
|
|
||
|
public class IfTest{
|
||
|
Integer m1(Boolean b) {
|
||
|
Integer i;
|
||
|
String b;
|
||
|
if(b) {
|
||
|
return i;
|
||
|
}else{
|
||
|
return b;
|
||
|
}
|
||
|
}
|
||
|
}
|