解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x=sc.nextInt(); int y=sc.nextInt(); if (y>x&&(y!=2||x!=0)) { System.out.println("-1"); } else if (x>y&&(x!=2||y!=0)) { System.out.println("1"); } else if (x==0&&y==2) { System.out.println("1"); } else if (x==2&&y==0) { System.out.println("-1"); } else if (x==y) { System.out.println("0"); } } }
0.0分
1 人评分