Run ID:113968

提交时间:2025-03-18 13:26:47

#include <iostream> using namespace std; int main() { int i = 1,y = 1,x = 0,c = 0,d = 0; while (i<=8) { c += x; x = y; y = c; i++; } cout << y << " " << x << " " << c; return 0; }