恩 研究研究
我也试了一下,折腾好久,发现版主果然是版主!!睡告诉我错在那里?
write()不是可以直接输出数组么?我看过API啊。
从这题我觉得C比较简便。
import
import
import
public class C2Java {
public static void main(String args[]) {
int a[][] = { { 0, 0, 0, 0 }, { 1, 1, 1, 1 }, { 6, 2, 4, 8 },
{ 1, 3, 9, 7 }, { 6, 4, 6, 4 }, { 5, 5, 5, 5 }, { 6, 6, 6, 6 },
{ 1, 7, 9, 3 }, { 6, 8, 4, 2 }, { 1, 9, 1, 9 }, };
try {
FileWriter fw = new FileWriter(new File("F:\\suiran3.txt"));
for (int i = 0; i < 10; i++) {
for (int j = 0; j < 4; j++) {
fw.write(a[i][j]);
}
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}