需要帮助嵌套嵌套以在Java表中添加所有行和列

问题描述 投票:0回答:2

问题是:读取表中给出的一组数字,并显示总数。 (添加行和列)这是我到目前为止所拥有的。我需要有关如何获得正确输出的指导。预先感谢。

*不想使用数组。

import java.util.Scanner;
public class tableintegers {

    public static void main(String[] args) {

        Scanner input=new Scanner(System.in);

        System.out.print("Give the number of rows and number of columns: ");
        int rows=input.nextInt();
        int cols=input.nextInt();

        int total=0, sum=0, numbers=0;
        for(int i=0;i<rows; i++) {

            if (rows>i) { 
                System.out.print("Enter row " +(i+1)+ ":");
                numbers=input.nextInt();
                input.nextInt();
            }

            sum+=numbers;
            total=sum+numbers;
        }
        System.out.println("The grand total is: " +total);

    }

}
java for-loop methods static nested-loops
2个回答
0
投票

下面的程序将要求用户首先分别插入行数和列数。接下来,使用嵌套的for循环来要求用户在每一行中插入每一列的值。

第一个For循环遍历行数。对于每次迭代,第二个For循环将迭代输入的列数。因此,要求用户为每一列输入一个值。

每行输入的总值将由sumOfRow计算。最后,这些值将加在一起,并显示最终总数。

希望这会有所帮助:)

import java.util.Scanner;
public class tableintegers {

    public static void main(String[] args) {

        Scanner input=new Scanner(System.in);

        System.out.print("Enter the number of rows:");
        int rows=input.nextInt();
        System.out.print("Enter the number of columns:");
        int cols=input.nextInt();

        int total=0, sumOfRow=0, numbers=0;
        for(int i=0; i<rows; i++) {
            sumOfRow = 0;
            System.out.println("\nRow No. " + (i + 1) );
            for(int j=0; j<cols; j++) {
                System.out.print("Enter value for Column " + (j+1) + ": ");
                numbers = input.nextInt();
                sumOfRow += numbers;
            }
            System.out.println("Sum of Row No. " + (i+1) + " Values: " + sumOfRow);
            total += sumOfRow;
        }
        System.out.println("\nThe grand total is: " +total);

    }

}

0
投票

import java.util.Scanner;公共类tableintegers {

public static void main(String[] args) {

    Scanner input=new Scanner(System.in);

    System.out.print("Give the number of rows and number of columns: ");
    int rows=input.nextInt();
    int cols=input.nextInt();

    int sumRow=0;
    for(int i=1;i<=rows; i++) { 
        System.out.print("Enter row " +i+ ":"); 
            for(int j=1;j<=cols; j++) { 
                int numbers=input.nextInt();
                sumRow+=numbers;
    }
    }
        System.out.println("The grand total is: " +sumRow);
    }
}   
© www.soinside.com 2019 - 2024. All rights reserved.