Java資料輸入

來源:互聯網
上載者:User

標籤:style   blog   http   color   java   使用   資料   2014   

以下是資料輸入執行個體:

//以下是資料輸入執行個體
import java.util.Scanner;//匯入java.util.Scanner,Scanner首字母大寫
public class Test2{
public static void main(String[]args){
Scanner cc =new Scanner(System.in);//聲明一個新的掃描器cc,並賦值
System.out.print("請輸入你的姓名:");
String name=cc.next();//使用name接入使用者輸入的資料,以下age和jg相同
System.out.print("請輸入你的年齡:");
int age = cc.nextInt();
System.out.print("請輸入你的籍貫:");
String jg =cc.next();
System.out.println("-----------------\n姓名:"+name+"\n年齡:"+age+"\n籍貫:"+jg);
}
}

注意:資料接收的類型,不然會出錯的。

  1. 整型資料使用:cc.nestInt()來接收
  2. 雙精確度使用:cc.nextDouble()來接收
  3. 字串使用:cc.next()來接收,沒有cc.nextChar()這個方法來接收單個字條的輸入

以上cc是自己聲明的掃描器,當然你也可以使用其它的字元

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.