@oldrinb 和 @iccthedral 谢谢,但我应该使用 printf 或 println。我以这种方式编辑但与以前相同
import java.util.Scanner;
public class test
{
public static void main( String args[] )
{
Scanner input = new Scanner( System.in );
int x;
int EO;
int Mult;
System.out.print ( "Enter value: " );
x = input.nextInt();
EO=x%2;
Mult=x%11;
if(EO>0&&Mult>0)
{
System.out.printf ("%d:NOT:ODD\n",x);
}
}
}