记录详情

Compile Error

/in/foo.c:2:1: error: unknown type name 'bool'
 bool isPrime(int x)
 ^~~~
/in/foo.c: In function 'isPrime':
/in/foo.c:5:10: error: 'false' undeclared (first use in this function)
   return false;
          ^~~~~
/in/foo.c:5:10: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:7:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
   if(x%i==0)
   ^~
/in/foo.c:9:4: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
    return true;
    ^~~~~~
/in/foo.c:9:11: error: 'true' undeclared (first use in this function)
    return true;
           ^~~~
/in/foo.c: In function 'main':
/in/foo.c:18:18: error: 'true' undeclared (first use in this function)
   if(isPrime(x)==true &&isPrime(x2)==true)
                  ^~~~
/in/foo.c: In function 'isPrime':
/in/foo.c:10:2: warning: control reaches end of non-void function [-Wreturn-type]
  }
  ^

信息

递交者
类型
自测
题目
A3-4 素数专题:验证哥德巴赫猜想
语言
C
递交时间
2024-11-11 16:32:47
评测时间
2024-11-11 16:32:47
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes