| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149478 | 赖泓宇 | 14兔子问题 | C | Compile Error | 0 MS | 0 KB | 329 | 2026-03-13 18:43:06 |
#include <iostream> using namespace std; int main() { int young = 1, small = 0, adult = 0; for (int i = 1; i <= 8; i++) { int new_young = adult; adult += small; small = young; young = new_young; } cout << young << " " << small << " " << adult << endl; return 0; }
Main.c:1:20: fatal error: iostream: No such file or directory
#include
^
compilation terminated.