奶头挺立呻吟高潮av全片,成人试看120秒体验区,性欧美极品v,A片高潮抽搐揉捏奶头视频

JAVA認證

java的輸入語句小結

時間:2024-10-14 01:46:20 JAVA認證 我要投稿
  • 相關推薦

java的輸入語句小結

  Java中做輸入的方式:通過控制臺輸入數據,需要使用Scanner對象來操作,那么java輸入語句到底有哪些呢?下面跟yjbys小編一起來看看吧!

  1.使用Scanner

  使用時需要引入包import java.util.Scanner;首先定義Scanner對象

  Scanner sc = new Scanner(System.in);

  如果要輸入整數,則 int n = sc.nextInt();

  String類型的,則String temp = sc.next();

  比如:

  import java.util.Scanner;

  public class Test {

  public static void main(String[] args) {

  Scanner scanner = new Scanner(System.in);

  int[] days = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};

  int month = -1;

  while(true) {

  try {

  System.out.print("請輸入月份:");

  month = scanner.nextInt();

  if(month >= 1 && month <= 12) {

  break;

  }

  System.out.println("** 請輸入正確的月份 **");

  } catch (Exception e) {

  System.out.println("** 格式錯誤!請輸入數字 **");

  scanner.next();

  }

  }

  System.out.println(month + " 月份有:" + days[month - 1] + " 天");

  }

  }

  2.使用BufferedReader

  用前需要引入 import java.io.Reader;

  BufferedReader br = new BufferedReader( new InputStreamReader(System.in) );

  String input = br.readLine();

  比如:

  ==================================================================================================

  import java.io.*;

  public class importtext {

  public static void main(String[] args) {

  String st;

  int num;

  float fnum;

  try{

  System.out.print("輸入:");

  BufferedReader br=new BufferedReader(new InputStreamReader(System.in));

  st = br.readLine();

  System.out.print("輸入一個數:");

  num = Integer.parseInt(br.readLine());

  System.out.print("輸入一個浮點數:");

  fnum = Float.parseFloat(br.readLine());

  System.out.print("輸出:"+st+'n');

  System.out.print("輸出:"+num+'n');

  System.out.print("輸出:"+fnum+'n');

  }catch(IOException e){}

  }

  }

  ==================================================================================================

  package com.s2;

  import java.io.*;

  public class Input

  {

  public static void main(String[] args)throws IOException

  {

  while(true)

  {

  BufferedReader buf;

  String str;

  buf =new BufferedReader(new InputStreamReader(System.in));

  System.out.println("Input a string:");

  str=buf.readLine();

  System.out.println("String="+str);

  }

  }

  }

  ==================================================================================================

  應該注意的是:Java把從鍵盤輸入的數據一律看作是字符串,因此若要從鍵盤輸入并讓系統認可是數值型數據,必須經過轉換。

  比如:

  package com.s2;

  import java.io.*;

  public class Input

  {

  public static void main(String[] args)throws IOException

  {

  while(true)

  {

  int num;

  BufferedReader buf;

  String str;

  buf =new BufferedReader(new InputStreamReader(System.in));

  System.out.println("Input an integer:");

  str=buf.readLine();

  num=Integer.parseInt(str);

  System.out.println("String="+str);

  System.out.println("Integer="+str);

  }

  }

  }

【java的輸入語句小結】相關文章:

日語輸入法的輸入規則07-19

Java與Java web的區別08-22

Excel輸入技巧匯總09-21

Word如何輸入根號08-03

Excel函數輸入方法06-27

Excel高速輸入的技巧09-26

Excel基礎:輸入公式07-22

英語語法輸入09-22

java中continue跳轉語句使用方法10-04

Excel快速輸入數據的方法08-20

主站蜘蛛池模板: 汉中市| 郴州市| 邛崃市| 晋宁县| 武宣县| 武强县| 内乡县| 台中市| 沾益县| 自贡市| 花莲市| 米林县| 云林县| 互助| 西丰县| 德化县| 泾源县| 启东市| 余干县| 治县。| 浦江县| 东乡县| 莱州市| 东阿县| 张家界市| 营山县| 雷山县| 开江县| 安福县| 荣成市| 青阳县| 晋江市| 白山市| 蓬莱市| 原平市| 自贡市| 乌拉特后旗| 双牌县| 忻城县| 澜沧| 即墨市|