gpt4 book ai didi

java - 奇怪的语法错误(Java)

转载 作者:行者123 更新时间:2023-12-01 06:33:05 26 4
gpt4 key购买 nike

public int[][] fileRead(String fileName);
{
Scanner problem = new Scanner(new File(fileName));
int m = 9;
int [][] tgrid = new int[m][m];
while(input.hasNextInt()){
for (int i=0;i<m;i++){
for (int j=0;j<m;j++)
a[i][j] = input.nextInt();
}
}

由于某种原因,此代码给出了两个语法错误...错误如下。

2 errors found:
File: C:\Documents and Settings\s2813788\My Documents\Downloads\1005ICTAssignment\SudokuDriver.java [line: 81]
Error: Syntax error on token "(", ; expected
File: C:\Documents and Settings\s2813788\My Documents\Downloads\1005ICTAssignment\SudokuDriver.java [line: 81]
Error: Syntax error on token ")", delete this token

我没有发现方法 header 或类似内容有任何问题:|任何帮助将不胜感激。

最佳答案

方法参数后面有一个分号。

public int[][] fileRead(String fileName);
{

删除它:

public int[][] fileRead(String fileName)
{

关于java - 奇怪的语法错误(Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12615379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com