继续得到这个编译错误

时间:2014-02-20 17:02:55

标签: c cs50

编译时,我不断收到此错误。

mario.c:4:1: error: expected identifier or '('

我尝试过更换东西然后修改它们并改变其他东西然后修复它们但似乎没有任何帮助。我是新来的。有人可以帮忙吗?

#include <stdio.h>
#include <cs50.h>
int main(void);
{
int n;

    do 
   { 
    n = GetInt();
   }
    while (n=<0);
}

1 个答案:

答案 0 :(得分:5)

更改

int main(void);  
              ^Remove the semicolon 

int main(void)  

并且还要改变

while (n=<0);  

while (n <= 0);