摘要: #include <iostream> using namespace std; int a(int n){ if(n==4){ cout<<"4,5-->9,10"<<endl; cout<<"8,9-->4,5"<<endl; cout<<"2,3->8,9"<<endl; cout<<"7,8 阅读全文
posted @ 2023-07-28 19:58 爱吃泡面的皮卡 阅读(16) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int a(int n){ if(n<=2){ return 1; } return a(n-1)+a(n-2);//a(n-1)*n } int main(int argc, char** argv) { syste 阅读全文
posted @ 2023-07-28 19:44 爱吃泡面的皮卡 阅读(22) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include<iostream> #include <iomanip> using namespace std; int main(){ int data[9][9]; int i=0; int j=0; for(i=0;i<9;i++){ for (j=0 阅读全文
posted @ 2023-07-28 18:41 爱吃泡面的皮卡 阅读(20) 评论(0) 推荐(0)