您好,我有一个作业,它告诉我在下面运行此Java代码,
但我不断收到3个类似的错误,说变量StudentInfo无法解析为变量
这是错误
错误:studentInfo无法解析为变量-第11行
错误:studentInfo无法解析为变量-第15行
错误:studentInfo无法解析为变量-第15行
public class DisplayInfoExersice {
public static void main( String [ ] args ) {
int studentInfo [ ] [ ] = { {1, 78, 85}, {2, 83, 90} };
display( studentInfo );
}
public static void display( int array [ ] [ ] ) {
for ( int j = 0; j < studentInfo.length; j++ ) {
System.out.println( );
for ( int k = 0; k < studentInfo[j].length; k++)
System.out.print ( studentinfo [j] [k] + "\t"
);
}
System.out.println( );
}
}
请帮忙。
最佳答案
//这是正确的版本。
public class DisplayInfoExcercise {
public static void main( String [ ] args )
{
int studentInfo [ ] [ ] = { {1, 78, 85}, {2, 83, 90} };
display( studentInfo );
}
public static void display( int array [ ] [ ] )
{
for ( int j = 0; j < array.length; j++ ) //
{
System.out.println( );
for ( int k = 0; k <array[j].length; k++)
System.out.print ( array[j] [k] + "\t" );
}
System.out.println( );
}
}