所以我是初学者;任务是将给定的字符串转换为数组,字符串总是以第一个字符作为行数,第二个字符作为列数。
我的问题是解决如何将字符串 's' 的其余部分从一维数组移动到二维数组中。
提前致谢!
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String[] s = scanner.nextLine().split(" ");
int arows = Integer.parseInt(s[0]);
int acols = Integer.parseInt(s[1]);
int[][] cells = new int[arows][acols];
for (int col = 0; col < acols; col++){
for (int row = 0; row <= arows;row++){
cells[row][col] = Integer.parseInt(s[2]);
}
}
}
}
芜湖不芜
慕仙森
相关分类