我需要約爲2,2的變量之和,然後將其打印出來。如何在矩陣中的變量周圍添加變量
我不知道如何做到這一點。請幫忙! 這是我到目前爲止的代碼:
import java.util.*;
import java.io.*;
public class MatrixSumming
{
private int[][] m = {{5,6},{7,8},{3,4}}; //load in the matrix values
public int sum(int r, int c)
{
return 0;
}
public String toString()
{
return "";
}
}
這裏是我的亞軍
import java.io.File;
import java.io.IOException;
import java.util.Scanner;
import static java.lang.System.*;
public class MatrixSummingRunner
{
public static void main(String args[]) throws IOException
{
//Scanner file = new Scanner (new File("matsum.dat"));
int[][] mat = {{0, 0, 0, 0, 0, 0, 0},
{0, 1, 2, 3, 4, 5, 0},
{0, 6, 7, 8, 9, 0, 0},
{0, 6, 7, 1, 2, 5, 0},
{0, 6, 7, 8, 9, 0, 0},
{0, 5, 4, 3, 2, 1, 0},
{0, 0, 0, 0, 0, 0, 0}};
}
}
我試圖尋找,但找不到在矩陣類似這樣的東西。
你能否提供更清晰的想要達到的目標? – mbsingh
就像我想要它得到像2,2矩陣解釋然後在所有8個方向添加2,2所有變量然後打印它 – Will309
如果在一個方向上沒有價值會怎麼樣? (位置0,0) – blueygh2