pg电子游戏软件,类似车行168的软件,单机游戏内购破解平台,今日打牌财神方位查询老黄历

java的輸入語句小結(jié)

時(shí)間:2024-08-02 14:43:00 JAVA認(rèn)證 我要投稿
  • 相關(guān)推薦

java的輸入語句小結(jié)

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

  1.使用Scanner

  使用時(shí)需要引入包import java.util.Scanner;首先定義Scanner對(duì)象

  Scanner sc = new Scanner(System.in);

  如果要輸入整數(shù),則 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("請(qǐng)輸入月份:");

  month = scanner.nextInt();

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

  break;

  }

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

  } catch (Exception e) {

  System.out.println("** 格式錯(cuò)誤!請(qǐng)輸入數(shù)字 **");

  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("輸入一個(gè)數(shù):");

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

  System.out.print("輸入一個(gè)浮點(diǎn)數(shù):");

  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);

  }

  }

  }

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

  應(yīng)該注意的是:Java把從鍵盤輸入的數(shù)據(jù)一律看作是字符串,因此若要從鍵盤輸入并讓系統(tǒng)認(rèn)可是數(shù)值型數(shù)據(jù),必須經(jīng)過轉(zhuǎn)換。

  比如:

  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的輸入語句小結(jié)】相關(guān)文章:

Java入門基礎(chǔ)知識(shí):Java IO(輸入/輸出)03-07

JAVA認(rèn)證基礎(chǔ)知識(shí):JavaNativeInterface學(xué)習(xí)小結(jié)01-11

日語輸入法的輸入規(guī)則12-08

PPT文字輸入詳細(xì)教程03-29

鼠標(biāo)輸入法介紹03-21

word中輸入分?jǐn)?shù)的方法03-04

在word中如何輸入分?jǐn)?shù)12-01

如何選擇輸入法03-05

java中continue跳轉(zhuǎn)語句使用方法03-29

主站蜘蛛池模板: 郴州市| 普洱| 仪陇县| 吉林省| 昭平县| 潞西市| 上栗县| 凌云县| 仲巴县| 翼城县| 闸北区| 萍乡市| 建始县| 娄底市| 苍山县| 五寨县| 五台县| 台安县| 平阴县| 莲花县| 漾濞| 综艺| 普兰县| 上栗县| 广平县| 四川省| 桂东县| 富阳市| 铁力市| 英吉沙县| 庆云县| 昭苏县| 丽江市| 渑池县| 江源县| 榆中县| 尉犁县| 荆州市| 桃园县| 雷州市| 扎兰屯市|