程序计时,读取二维数组

2022/5/31 1:24:09

本文主要是介绍程序计时,读取二维数组,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

java程序计时
long startTime=System.currentTimeMillis();
/**
*代码块
*/ 
long endTime = System.currentTimeMillis();
        System.out.println("程序的执行时间:" + (endTime - startTime));

依次读取文件中二维数组:

 FileInputStream fileInputStream = null;
        try {
            fileInputStream = new FileInputStream("src\\o_athletes\\test\\pref0.in");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        Scanner scanner =new Scanner(fileInputStream);
        int n=scanner.nextInt();
        System.out.println(n);
        int[][] a=new int[n][n];
        int[][] q=new int[n][n];

        for (int i = 0; i <n; i++) {
            for (int j = 0; j < n; j++) {
                a[i][j]=scanner.nextInt();
                System.out.println(a[i][j]);
            }
        } System.out.println("_____");
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                q[i][j]=scanner.nextInt();

                System.out.println(q[i][j]);
            }
        }

 



这篇关于程序计时,读取二维数组的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程