我一直在使用c编写代码,其中包括创建一个猜测游戏,我一直在我的代码中遇到同样的错误[关闭]

kcugc4gi  于 2023-04-19  发布在  其他
关注(0)|答案(1)|浏览(111)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
your textenter image description here
your textenter image description here
your textenter image description here
我试着修改了一些类型脚本,但我仍然遇到错误,告诉我他们在第74行有问题,这意味着他们是我的主代码中的一个问题,我无法看到。
enter image description here

o7jaxewo

o7jaxewo1#

最后一个子句没有结束}

if ( min == max )
{
    printf( "You're cheating...\n" );
}   <-- THIS { IS MISSING

你需要确保开始和结束的“花括号”是干净匹配的。这就是为什么软件作者应该正确缩进他们的代码。如果你不确定,缩进 * 四 * 个空格,因为这是专业人士通常使用的。

相关问题