Run ID:149482

提交时间:2026-03-13 18:46:08

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