1

我正在编写一个程序来计算一个幻方,但我无法让输入正常工作。我很确定我正在用值填充数组,但它在前两个 for 循环之后结束。后两个应该打印数组,但程序在输入数据后立即结束。我是否将循环放在错误的位置?

#include <stdio.h>

#define SIZE 15

int main(){
    declareArray();

    return 0;
}

int declareArray(){
    int rowNumber = 0;
    int dimension=0;
    int arr[SIZE][SIZE] = {0};
    int col = 0;
    int row = 0;

    printf("Please enter the dimension of the square: ");
    scanf("%d", &dimension);
    arr[dimension][dimension];
    for(row; row<dimension; ++row)
        for(col; col<dimension; ++col){
            printf("Please enter the data for row %d: ", ++rowNumber$                       
            scanf("%d", &arr[row][col]);
        }

    for(row; row<dimension; ++row){
        for(col; col<dimension; ++col){
            printf("%d", arr[row][col]);
        }
    }
    return 0;
}

我的输入是:

3
123
456
789

我的预期输出是

123
456
789

我得到的是:

123

0

0

456

0

0

789

0

0
4

3 回答 3

2

第一次循环后,您需要将 row 和 col 重置为 0:

                for(row = 0; row<dimension; ++row)

                        for(col = 0; col<dimension; ++col)
                        {
                                printf("Please enter the data for row %d: ", ++rowNumber$                        
                                scanf("%d", &arr[row][col]);


                        }


                for(row = 0; row<dimension; ++row)
                {
                        for(col = 0; col<dimension; ++col)
                        {
                               printf("%d", arr[row][col]);
                        }
               }

保持循环初始化计数器变量的习惯,否则会很危险。

于 2017-11-03T07:42:28.133 回答
0

for您需要在循环的第一部分写入初始值。所以而不是

for(row; row<dimension; ++row) 

for(col; col<dimension; ++col)

利用

for(row = 0; row < dimension; ++row)

for(col = 0; col < dimension; ++col)

同样非常重要的是,您需要重新初始化变量rowcol然后再在第二个循环中使用它们。现在,当您到达第二个循环(打印循环)时,row已经col等于dimension从第一个循环(读取循环)开始,所以您永远不会进入第二个循环。

for(row = 0; row<dimension; ++row)
{
    for(col = 0; col<dimension; ++col)
    {
        printf("%d", arr[row][col]);
    }
}

最后,您的程序应该是这样的:

#include <stdio.h>

#define SIZE 15

int main(){
    declareArray();

    return 0;
}

int declareArray(){
    int rowNumber = 0;
    int dimension=0;
    int arr[SIZE][SIZE] = {0};
    int col = 0;
    int row = 0;

    printf("Please enter the dimension of the square: ");
    scanf("%d", &dimension);
    arr[dimension][dimension];
    for(row=0; row < dimension; ++row)
        for(col=0; col < dimension; ++col){
            printf("Please enter the data for row %d: ", ++rowNumber);
            scanf("%d", &arr[row][col]);
        }

    for(row=0; row < dimension; ++row){
        for(col=0; col < dimension; ++col){
            printf("%d", arr[row][col]);
        }
    }
    return 0;
}

注意:我认为您应该更改声明

printf("Please enter the data for row %d: ", ++rowNumber);

至 :

printf("Please enter the data for element %d: ", ++rowNumber);

当您读取每个框的元素时,您的变量rowNumberelementNumber,而不是行。

于 2017-11-03T07:38:53.260 回答
0

您没有正确初始化循环变量,当第一对循环完成时,它们的(colrow)值已经等于dimension第二对循环的循环条件无效

于 2017-11-03T07:40:41.240 回答