java的输入语句小结

时间:2023-03-27 10:22:30 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的输入语句小结】相关文章:

JAVA认证基础知识:JavaNativeInterface学习小结06-02

日语输入法的输入规则04-13

CAD怎么输入分数04-13

英语语法输入04-28

ppt输入角度符号的教程08-12

word怎么设置输入法08-04

cad2007输入坐标的方法04-13

CAD中输入单行文字的方法01-05

学习java技巧10-31

Java的基础知识07-27