java二维数组输入
Posted 青癯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java二维数组输入相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; public class test{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int n = scan.nextInt(); //x轴 int m = scan.nextInt();//y轴 String[] temp= new String[n+1]; for(int i = 0; i< n; i++) { temp[i] = scan.next(); } char[][] p = new char[n][m]; // temp转为二维数组p[n][m]; for(int i = 0; i<n; i++) { for(int j = 0; j< m; j++) { p[i][j] = temp[i].charAt(j); System.out.println(p[i][j]); } } } }
以上是关于java二维数组输入的主要内容,如果未能解决你的问题,请参考以下文章