Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149480 赖泓宇 14兔子问题 C Compile Error 0 MS 0 KB 347 2026-03-13 18:44:52

Tests(0/0):


Code:

#include<bits/stdc++.h> 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; }


Run Info:

Main.c:1:24: fatal error: bits/stdc++.h: No such file or directory
 #include
                        ^
compilation terminated.