我需要编写一个 Java 程序,提示用户输入一个由 2 位数字组成的整数;然后在屏幕上显示其各个数字的总和。
我被困在这里。我究竟做错了什么?
import java.util.Scanner ;
public class ss {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int x;
System.out.println("Please Enter a number consists of 2 digits only : ");
x = input.nextInt();
x.length() == 2;
}
}
最后一行包含错误!