#4265: WA(Line:10)搞不懂= =


savagewind (JAVA_Coder)


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
int main() 
{
    int s ;
    while( scanf("%d",&s)!=EOF ) 
    {
      if (s>=2&s<=2147483647)
        {
          if (s%2==0)
             printf ("非質數\n");
          else if (s==2)
             printf ("質數\n");                    
          else 
             printf ("質數\n");
        
        }
     
    }
    return 0;
}
 
請各位大神幫我這個初入C語言的新手一點執導吧0.0 
#4266: Re:WA(Line:10)搞不懂= =


mac (風)


9?15?