標題:
資料輸入 (四) - Scanner 類別
[打印本頁]
作者:
鄭繼威
時間:
2023-4-26 19:28
標題:
資料輸入 (四) - Scanner 類別
本帖最後由 鄭繼威 於 2023-4-26 20:28 編輯
利用套件 java.util 中的 Scanner 類別, 來做資料輸入.
nextInt():取得使用者輸入的整數
nextFloat():取得使用者輸入的浮點數
nextLine():取得使用者輸入的字串(
讀整行
包含空白字元、空白鍵、Tab)ex:讀單字or句子
next():取得使用者輸入的字串(
不包含
空白字元、空白鍵、Tab)ex:讀單字
import java.util.Scanner;
public class Ch43
{
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str1, str2;
int a;
float b;
System.out.print("請輸入一字串(帶空白): ");
str1=s.nextLine();
System.out.println(str1);
System.out.print("請輸入一字串(不帶空白): ");
str2=s.next();
System.out.println(str2);
System.out.print("請輸入一整數: ");
a=s.nextInt();
System.out.println(a);
System.out.print("請輸入一浮點數: ");
b=s.nextFloat();
System.out.println(b);
}
}
複製代碼
作者:
李彣
時間:
2023-4-26 20:38
import java.util.Scanner;
public class B
{
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str1, str2;
int a;
float b;
str1=s.nextLine();
System.out.println(str1);
str2=s.next();
System.out.println(str2);
a=s.nextInt();
System.out.println(a);
b=s.nextFloat();
System.out.println(b);
}
}
複製代碼
作者:
黃裕恩
時間:
2023-4-26 20:40
import java.util.Scanner;
public class Sdlghtg
{
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str1, str2;
int a;
float b;
System.out.print("請輸入一字串(帶空白): ");
str1=s.nextLine();
System.out.println(str1);
System.out.print("請輸入一字串(不帶空白): ");
str2=s.next();
System.out.println(str2);
System.out.print("請輸入一整數: ");
a=s.nextInt();
System.out.println(a);
System.out.print("請輸入一浮點數: ");
b=s.nextFloat();
System.out.println(b);
}
}
複製代碼
作者:
林劭杰
時間:
2023-4-26 20:43
import java.util.Scanner;
public class dbb
{
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str1, str2;
int d;
float y;
str1=s.nextLine();
System.out.println(str1);
str2=s.next();
System.out.println(str2);
a=s.nextInt();
System.out.println(d);
b=s.nextFloat();
System.out.println(y);
}
}
複製代碼
作者:
林劭澧
時間:
2023-4-26 20:45
import java.util.Scanner;
public class Sdlghtg
{
public static void main(String args[])
{
Scanner s=new Scanner(System.in);
String str1, str2;
int a;
float b;
System.out.print("請輸入一字串(帶空白): ");
str1=s.nextLine();
System.out.println(str1);
System.out.print("請輸入一字串(不帶空白): ");
str2=s.next();
System.out.println(str2);
System.out.print("請輸入一整數: ");
a=s.nextInt();
System.out.println(a);
System.out.print("請輸入一浮點數: ");
b=s.nextFloat();
System.out.println(b);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2