| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149479 | 赖泓宇 | 14兔子问题 | C | Compile Error | 0 MS | 0 KB | 341 | 2026-03-13 18:44:11 |
#include <iostream> using namespace std; int main() { int young = 1, small = 0, adult = 0; for (int month = 1; month <= 8; month++) { 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.