Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68474 石依灵 14兔子问题 C++ Accepted 1 MS 260 KB 262 2024-03-23 14:49:40

Tests(1/1):


Code:

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