原公式 y=x-1 x<0 ,y=0 x=0 ,y=x+1 x>0
我按书上的步骤
public static void main(String args[]) { int x = 1; int y; if (x < 0) { y = x - 1; } else if (x == 0) { y = 0; } else { y = x + 1; } }
为什么后面这个大括号有叉?算不粗来
我按书上的步骤
public static void main(String args[]) { int x = 1; int y; if (x < 0) { y = x - 1; } else if (x == 0) { y = 0; } else { y = x + 1; } }
为什么后面这个大括号有叉?算不粗来