首页 > 解决方案 > C 编译器在函数之前需要标识符

问题描述

我一直在尝试用 c 编写一个扫雷函数,只要它碰到一个空白区域就会扩展一个块区域,但是...\Desktop\Test\main.c|38|error: expected ';', ',' or ')' before 'int'每当我尝试构建时,我都会不断收到错误,尽管该函数对我来说似乎非常好。我的代码在这里:

#include <windows.h> /* for HANDLE type, and console functions */
#include <stdio.h> /* standard input/output */
#include <stdlib.h> /* included for rand */

#define WIDTH 30
#define HEIGHT 30
#define BOMBS 90

HANDLE wHnd; /* write (output) handle */
HANDLE rHnd; /* read (input handle */

void SetGrid(int grid[WIDTH][HEIGHT])
{
    int bomb[2] = { abs(rand() % WIDTH-1) + 1,
                   abs(rand() % HEIGHT-1) + 1 };

    for (int i = 0; i < BOMBS; i++)
    {
        while (grid[bomb[0]][bomb[1]] < -1 || bomb[0] == 0 || bomb[1] == 0 || bomb[0] >= WIDTH-1 || bomb[1] >= HEIGHT-1)
        {
            bomb[0] = abs(rand() % WIDTH-1) + 1;
            bomb[1] = abs(rand() % HEIGHT-1) + 1;
        }

        grid[bomb[0]][bomb[1]] = -9;

        grid[bomb[0] + 1][bomb[1] + 1]++;
        grid[bomb[0] + 1][bomb[1]    ]++;
        grid[bomb[0]    ][bomb[1] + 1]++;
        grid[bomb[0] - 1][bomb[1] + 1]++;
        grid[bomb[0]    ][bomb[1] - 1]++;
        grid[bomb[0] + 1][bomb[1] - 1]++;
        grid[bomb[0] - 1][bomb[1] - 1]++;
        grid[bomb[0] - 1][bomb[1]    ]++;
    }
}

void ExpandGrid(int fullGrid[WIDTH][HEIGHT], int knownGrid[WIDTH][HEIGHT] int blankPos[2])
{
    int neighbors[8][2] = {{0,1}, {1,0}, {1,1},
                          {0,-1},        {-1,0},
                          {-1,-1},{-1,1},{1,-1}};
    int curTile[2];

    for(int blck = 0; blck < 8; ++blck)
    {
        curTile[0] = blankPos[0]+neighbors[blck][0];
        curTile[1] = blankPos[1]+neighbors[blck][1];

        if(fullGrid[curTile[0], curTile[1]] == 0)
        {
            knownGrid[curTile[0], curTile[1]] == 1;
            ExpandGrid(fullGrid, knownGrid, curTile);
        }
        else if(fullGrid[curTile[0], curTile[1]] > 0) {knownGrid[curTile[0], curTile[1]] == 1};
    }
}

int main(void)
{
    /* there will be two grids, a known grid and a full grid.
       for the full grid, a zero at a position [x][y] will indicate a blank space.
       a positive will be the tiles number, and a negative will be a bomb.

       for the known grid, a zero at space [x][y] will indicate an unknown block.
       while a 1 will indicate it is uncovered.
    */

    srand(time(0));

    SMALL_RECT windowSize = { 0, 0, WIDTH - 1, HEIGHT - 1 };

    //COORD bufferSize = { WIDTH, HEIGHT };

    COORD characterBufferSize = { WIDTH, HEIGHT };
    COORD characterPosition = { 0, 0 };
    SMALL_RECT consoleWriteArea = { 0, 0, WIDTH - 1, HEIGHT - 1 };

    CHAR_INFO consoleBuffer[WIDTH][HEIGHT];

    wHnd = GetStdHandle(STD_OUTPUT_HANDLE);
    rHnd = GetStdHandle(STD_INPUT_HANDLE);

    SetConsoleTitle("Minesweeper!");

    SetConsoleWindowInfo(wHnd, TRUE, &windowSize);
    //SetConsoleScreenBufferSize(wHnd, bufferSize);

    int startGrid[WIDTH][HEIGHT] = { 0 };
    int knownGrid[WIDTH][HEIGHT] = { 0 };
    SetGrid(startGrid);

    for (int x = 0; x < WIDTH; ++x)
    {
        for (int y = 0; y < HEIGHT; ++y)
        {
            if (startGrid[x][y] > 0)
            {
                consoleBuffer[x][y].Char.AsciiChar = '0' + startGrid[x][y];
                consoleBuffer[x][y].Attributes = FOREGROUND_GREEN | FOREGROUND_INTENSITY;
            }
            else
            {
                consoleBuffer[x][y].Char.AsciiChar = 'o';
                consoleBuffer[x][y].Attributes = (startGrid[x][y] < 0 ? FOREGROUND_RED : FOREGROUND_BLUE) | FOREGROUND_INTENSITY;
            }
        }
    }

    WriteConsoleOutputA(wHnd, consoleBuffer, characterBufferSize, characterPosition, &consoleWriteArea);

    getchar();
}

如果我是正确的,这个错误通常只会在你忘记结束前一行代码时出现,但在这里我不认为是这种情况。这是否与函数是递归的事实有关,还是编译器的怪癖?正如你所言,我对 c 很陌生。

标签: cfunctioncompiler-errors

解决方案


在函数定义的标题中ExpandGrid()

void ExpandGrid(int fullGrid[WIDTH][HEIGHT], int knownGrid[WIDTH][HEIGHT] int blankPos[2])
                                                                         |
                                                                        here

,最后一个参数的定义前缺少逗号 ( ) blankPos

这就是错误消息的用途。

它应该是:

void ExpandGrid(int fullGrid[WIDTH][HEIGHT], int knownGrid[WIDTH][HEIGHT], int blankPos[2])

推荐阅读