上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int a[1001]; int dong=0,cishu=10; bool b[1001]; for(int i=1;i<=10;i++){ b[i]=true; } for(int 阅读全文
posted @ 2023-09-24 10:00 fushuxuan1 阅读(26) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int t,n,a; int f(int n[],int a){ if(a==1){ t=n[1]; }else{ if(f(n,a-1)>n[a]){ t=f(n,a-1); }else{ t=n[a]; 阅读全文
posted @ 2023-09-24 09:59 fushuxuan1 阅读(14) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a>=65 && a<=97){ a-=32; cout<<a; }else if(a>=97 && a<=122){ a+=32; cout<< 阅读全文
posted @ 2023-09-15 20:24 fushuxuan1 阅读(32) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int s(int a,int b){ if(a<=9){ if(b<=a){ cout<<a<<"*"<<b<<"="<<a*b<<" "; s(a,b+1); }else{ cout<<endl; s(a 阅读全文
posted @ 2023-09-03 08:53 fushuxuan1 阅读(20) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main(){ int n; cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]; } for(int i=0;i<n;i++){ for(int j=0;j<n 阅读全文
posted @ 2023-08-16 12:36 fushuxuan1 阅读(15) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int jc(int a){ if(a<=2){ return a; } return jc(a-1)*a; } int main(){ int n; cin>>n; cout<<jc(n); return 0; } 阅读全文
posted @ 2023-08-12 16:47 fushuxuan1 阅读(49) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int ROW=16;//行 int COL=16;//列 bool IS_BLACK=true;//是否黑棋下 int ALL_LIST[16][16]; bool BLACK_LIST[16][16]; 阅读全文
posted @ 2023-08-10 20:15 fushuxuan1 阅读(33) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int col=4;//行 int row=6;//列 int box1_x[3],box1_y[3]; char ct; int mcol=16; int mrow=16; void box_p(char 阅读全文
posted @ 2023-08-08 20:31 fushuxuan1 阅读(28) 评论(0) 推荐(0)
摘要: //#include <iostream> //using namespace std; //int jc(int n){ // if(n<=2){ // return n; // }else{ // return jc(n-1)*n; // } // //} //int main(int argc 阅读全文
posted @ 2023-08-03 20:32 fushuxuan1 阅读(52) 评论(0) 推荐(0)
摘要: http://www.rply.cn/news/60558.html 阅读全文
posted @ 2023-08-01 20:26 fushuxuan1 阅读(33) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页