Renewed Structure

This commit is contained in:
e2hang
2025-08-28 21:17:28 +08:00
parent b97f348a51
commit 1a5c4329b2
163 changed files with 312 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include <iostream>
using namespace std;
int feb(int n){
if(n > 1)
return feb(n - 1) + feb(n - 2);
return 1;
}
int main(){
for(int i = 1;i < 10; i++){
cout << feb(i) << endl;
}
return 0;
}