我正在尝试编写( CS50 ),我遇到了一些问题。代码不能正确执行,并生成一些问题,如下所示: Results for cs50/problems/2020/x/sentimental/mario/more generated by check50 v3.1.2:) mario.py exists.:) rejects a height of 0
:( handles a height of 1 correct
我已经从cs50 2018开始了马里奥问题集,并且只写了第一部分来从用户那里获得整数。main(void)int n;
n = get_int("Number of rows: "); while (n < 0 || n > 23);生成的错误是这样的:
mario.c:9:9: error: implicit declaration of function 'get_int' is invalid in C99 [-Werror,-Wimpli