これは、10行4列の配列からのものです。null値が画面に出力されないようにする場合のifを取得するにはどうすればよいですか?
for(int j = 0; j < calculation[i].length; j++)
if (calculation[i] != null)<-------- this does nothing, however if I change it to == null nothing prints to screen
System.out.print(calculation[i][j] + " \t");
System.out.print("\n");