1. 程式人生 > >java獲取使用者輸入的字串

java獲取使用者輸入的字串

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow

也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!

               

 import java.util.Scanner; //匯入輸入類

 

public static void main(String[] args) {
  
  //建立輸入物件
  Scanner sc=new Scanner(System.in);
  
  //獲取使用者輸入的字串
  String str=null;
  System.out.print("請輸入任意字元:");
  str=sc.nextLine();
  
  System.out.println("你輸入的字元為:"+str);
  
 }

           

給我老師的人工智慧教程打call!http://blog.csdn.net/jiangjunshow

這裡寫圖片描述