OnJava8-Examples/control/IfElse2.java
2015-11-14 16:18:05 -08:00

24 lines
441 B
Java

// control/IfElse2.java
// ©2016 MindView LLC: see Copyright.txt
public class IfElse2 {
static int test(int testval, int target) {
if(testval > target)
return +1;
else if(testval < target)
return -1;
else
return 0; // Match
}
public static void main(String[] args) {
System.out.println(test(10, 5));
System.out.println(test(5, 10));
System.out.println(test(5, 5));
}
}
/* Output:
1
-1
0
*/