Добавление столбцов и строк в 2D-массив типа String? - PullRequest
0 голосов
/ 23 октября 2018

Я нашел в своем учебнике упражнение, которое создает этот двумерный массив.

Example input/output

У меня работает цикл ввода, и таблица печатается успешно, ноЯ не могу найти способ взять значения в каждой строке и столбце и распечатать итоги, как показано в упражнении.

Я спросил своего профессора, и он сказал, что не может вспомнить, как это сделать.с массивом строк.Я надеюсь, что есть способ преобразовать каждое число из строки в int.Я предполагаю, что создание двойного массива было бы намного проще, чем массива String, но на данный момент я не знаю, как преобразовать всю мою работу.

package Assignment2;
import java.util.*;

/**
 *
 * @author Lyan
 */
public class Exercise7_20
{
public static void sales2DArray(int salesPerson, int product, double value)
{

}


public static void main(String[] args)
{

        int salesP = 0; //salesPerson set to 0






     String[][] table = new String[5][5]; // A matrix of '5 rows and '5 Columns'


     //For loop that replaces null values in table with 0.00
     for (int i = 0; i < table.length; i++) {
for (int j = 0; j < table[i].length; j++) {
    if (table[i][j] == null) {
        table[i][j] = "       0.0";
    }
}
}
     //Input for salesPerson
        Scanner inSales = new Scanner(System.in);

        System.out.println("Enter salesPerson number (-1 to end): ");
        salesP = inSales.nextInt();


        //While loop to ask for salesPerson, product, and sales amount (val)
    while(salesP > 0 && salesP < 5)
    {

        //input for Product number
          Scanner inProduct = new Scanner(System.in);
    System.out.println("Enter product number");
    int productNum = inProduct.nextInt();

    //input for sales amount
    Scanner inValue = new Scanner(System.in);
    System.out.println("Enter Sales amount");
    double val = inValue.nextDouble();

    //sets the values onto the table.
    table[productNum - 1][salesP] = "       " + Double.toString(val);

                System.out.println("Enter salesPerson number (-1 to end): ");

                salesP = inSales.nextInt();

                //makes the 1-5 on the left hand side of the table
    }
    for(int i = 1; i < 6; i++)
    {
         table[i-1][0] = "       " + i + "";
    }

    //Hardcoded header
    System.out.println("Product Salesperson 1 Salesperson 2 Salesperson 3 Salesperson 4 Total");

    //Makes the 2D array to print in a box format rather than a straight line.
System.out.println(Arrays.deepToString(table).replace("],","]\n"));


//Anything below is my testing to get the total to print out for each individual salesPerson (column)
//and the totals for the products for all salesPerson (rows)
    System.out.print("Total       ");

     String total = "";
     int sum = 0;

    for(int down = 0; down < 5; down++)
    {

            //append
    }


    //successfully reads the last value of each column but does not print the total
    //only successfully prints the last value
    for(int c = 1; c < 5; c++)
    {
    for(int r = 0; r < 5; r++)
    {
       String temp = table[r][c];
       total = temp;
    }

    System.out.print(total + "   ");
    }
}
}

1 Ответ

0 голосов
/ 23 октября 2018

Вы можете использовать эту простую логику, чтобы найти сумму каждой отдельной строки и столбца вашего 2D-массива.

double[] sumOfRows = new double[5];
double[] sumOfCols = new double[5];

for (int i = 0; i < table.length; i++) {
    for (int j = 0; j < table.length; j++) {
        sumOfRows[i] = sumOfRows[i] + Double.parseDouble(table[i][j]);
        sumOfCols[i] = sumOfCols[i] + Double.parseDouble(table[j][i]);
    }
}

Здесь мы объявляем 2 дополнительных массива для хранения суммы каждой строки и столбца соответственно .Вы можете распечатать их в соответствии со своей логикой.

Также обратите внимание, используйте Double.parseDouble(...) для преобразования String в double .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...