public class test (  
   public static void main (String args[])    {  
       int  i = 0xFFFFFFF1;  
       int  j = ~i;  
    
      }  
 )  
What is the decimal value of j at line 5? A. 0  
B. 1  
C. 14  
D. -15  
E. An error at line 3 causes compilation to fail.  
F. An error at line 4 causes compilation to fail.  
为什么选C啊