P 5710【深いベース3.例2】数の性質--Java

8878 ワード

    

             :

       1:   ;
       2:   4      12。

 A               ;Uim                 ;                   ;               。
    

       x(0≤x≤1000)x(0\le x \le 1000)x(0≤x≤1000)
    

    4           ,       1,    0,     。
      
   #1

12

   #1

1 1 0 0
import java.util.Scanner;
public class P5710 {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        System.out.print(A(n)+" "+B(n)+" "+C(n)+" "+D(n));
    }
    public static int A(int n){
        if(n%2==0&&n>4&&n<=12){
        return 1;
        }
        else{
            return 0;
        }
    }
    public static int B(int n){
          if(n%2==0||(n>4&&n<=12)){
           return 1;
        }
        else{
           return 0;
        }
    }
    public static int C(int n){
        if(n%2==0^(n>4&&n<=12)){
            return 1;
        }
        else{
            return 0;
        }
    }
    public static int D(int n){
        if(n%2!=0&&!(n>4&&n<=12)){
            return 1;
        }
        else{
            return 0;
        }
    }
}