在 java 中輸入數組的方法包括:使用 scanner 類輸入整數數組。使用 bufferedreader 類輸入字串數組。使用 datainputstream 類輸入基本類型資料數組(例如整數數組)。

如何在 Java 中输入一个数组

在 Java 中,可以使用以下方法输入一个数组:

1. 使用 Scanner 类

Scanner 类提供了一组方法用于从控制台读取输入。可以使用以下代码来输入一个整数数组:

立即学习“Java免费学习笔记(深入)”;

import java.util.Scanner;

public class ReadArray {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter the size of the array:");
        int size = sc.nextInt();

        int[] arr = new int[size];
        System.out.println("Enter the elements of the array:");
        for (int i = 0; i < size xss=removed> 登录后复制 

2. 使用 BufferedReader 类

BufferedReader 类提供了一个 readLine() 方法,用于逐行读取文本。可以使用以下代码来读取一个字符串数组:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class ReadArray {

    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        System.out.println("Enter the size of the array:");
        int size = Integer.parseInt(reader.readLine());

        String[] arr = new String[size];
        System.out.println("Enter the elements of the array:");
        for (int i = 0; i < size xss=removed> 登录后复制 

3. 使用 DataInputStream 类

DataInputStream 类提供了用于读取基本类型数据的 readInt() 和 readUTF() 方法。可以使用以下代码来读取一个整数数组:

import java.io.DataInputStream;
import java.io.IOException;

public class ReadArray {

    public static void main(String[] args) throws IOException {
        DataInputStream dis = new DataInputStream(System.in);
        System.out.println("Enter the size of the array:");
        int size = dis.readInt();

        int[] arr = new int[size];
        System.out.println("Enter the elements of the array:");
        for (int i = 0; i < size xss=removed> 登录后复制 

以上就是java怎么实现输入一个数组的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部