標籤:style java
以下是資料輸入執行個體:
//以下是資料輸入執行個體
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);
}
}
注意:資料接收的類型,不然會出錯的。
- 整型資料使用:cc.nestInt()來接收
- 雙精確度使用:cc.nextDouble()來接收
- 字串使用:cc.next()來接收,沒有cc.nextChar()這個方法來接收單個字條的輸入
以上cc是自己聲明的掃描器,當然你也可以使用其它的字元
650) this.width=650;" title="資料輸入執行個體" style="border-left- 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; padding-top: 0px; padding-left: 0px; padding-right: 0px; border-top-width: 0px" border="0" alt="資料輸入執行個體" src="http://img1.51cto.com/attachment/201408/11/9260165_1407745640drwC.png" width="681" height="446" />