八义士 发表于 2024-9-13 22:11:45

函数中结构体体形参报错

struct date
{
        int year;
        int month;
        int day;
};

/
int countDay(struct date currentDay)
{
        return 0;
}
形参报错,怎么回事

FishC 发表于 2024-9-13 22:11:52

你好,鱼油!你这个问题是由于语法错误导致的。具体来说,代码段中存在以下两个问题:

1. 结构体定义之后的注释符号 `/` 应替换为注释语法 `//` 或 `/* ... */`。
2. `countDay` 函数的名称后面的括号使用了中文括号 `(` 和 `)`,应替换为英文括号 `(` 和 `)`。
3. 函数内部的分号 `;` 使用了中文分号,应替换为英文分号 `;`。

请参考以下修改后的代码:

#include <stdio.h>

struct date
{
        int year;
        int month;
        int day;
};

int countDay(struct date currentDay)
{
        return 0;
}

希望这个回答能帮到你!如果还有其他问题,欢迎继续提问哦!

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: 函数中结构体体形参报错