我需要編寫一個java程序,該程序具有一個數組返回方法,該方法將一個二維字符數組作爲參數並返回一個一維字符串數組。 這裏就是我有Java二維字符數組
import java.util.Scanner;
public class TwoDimArray {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("Enter the number of Rows?");
int rows = s.nextInt();
System.out.println("Enter the number of Colums?");
int cols = s.nextInt();
int [][] array = new int [rows] [cols];
}
public static char[ ] toCharArray(String token) {
char[ ] NowString = new char[token.length()];
for (int i = 0; i < token.length(); i++) {
NowString[i] = token.charAt(i);
}
return NowString;
}
}
而問題是...... – 2012-02-02 07:46:41
而你的問題是什麼? – 2012-02-02 07:47:18