运行 ID 作者 题号 测评结果 分数 时间 内存 语言 代码长度 提交时间
230829 20软工5班陈钰洁 1233 - 快乐数 编译错误 0 0 MS 0 KB C 293 3年前
暂时无法获取本题测试点详情。

Main.c:10:1: error: unknown type name ‘bool’
10 | bool isHappy(int n) {
| ^~~~
Main.c: In function ‘isHappy’:
Main.c:12:16: error: ‘false’ undeclared (first use in this function)
12 | return false;
| ^~~~~
Main.c:12:16: note: each undeclared identifier is reported only once for each function it appears in
Main.c:18:12: error: ‘true’ undeclared (first use in this function)
18 | return true;
| ^~~~
Main.c:19:1: warning: control reaches end of non-void function [-Wreturn-type]
19 | }
| ^