如何在此程序中添加扫描仪?如果用户要输入值

时间:2018-07-17 07:53:19

标签: java string split reverse charat

com.android.support:support-core-ui:27.1.1

1 个答案:

答案 0 :(得分:1)

导入扫描仪,然后创建其对象并使用它来接受用户输入。

import java.util.Scanner;
//Statements of your code
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
String obj = sc.nextLine();
//Statements of your code
}