我需要创建一个代码来检查来自用户的输入是否等于双文字长度 3。我的 if 语句是我遇到问题的地方。谢谢
Scanner stdIn= new Scanner(System.in);
String one;
String two;
String three;
System.out.println("Enter a three character double literal ");
one = stdIn.nextLine();
if (!one.length().equals() "3")
{
System.out.println(one + " is not a valid three character double literal");
}