Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
42565 王奕朝 14兔子问题 C++ Accepted 2 MS 260 KB 183 2022-11-20 13:28:42

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c; a=1; b=0; c=0; for(int i=0;i<8;i++){ c+=b; b=a; a=c; } cout<<a<<" "<<b<<" "<<c; return 0; }