要求:
1. 根据传入的值X不同,返回对应的Y值也不同。
2. X大于零,进行y=x+3。
3. X小于零,进行y=x*x-1。
4. X等于零,进行y=0。
public class Numeration {
public static void main(String args[]) {
int y = function(0);
System.out.println(y);
}
public static int function(int x) {
int y;
if (x > 0) {
y = x + 3;
} else if (x == 0) {
y = 0;
} else {
y = x * x - 1;
}
return y;
}
}