08 2023 档案

摘要:#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 阅读(4) 评论(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 阅读(8) 评论(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 阅读(22) 评论(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 阅读(13) 评论(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 阅读(39) 评论(0) 推荐(0) 编辑
摘要:http://www.rply.cn/news/60558.html 阅读全文
posted @ 2023-08-01 20:26 fushuxuan1 阅读(27) 评论(0) 推荐(0) 编辑
摘要:1132 #include <iostream> using namespace std; int main(int argc, char** argv) { int N; cin>>N; string S1,S2; string x="Rock",y="Scissors",z="Paper"; f 阅读全文
posted @ 2023-08-01 20:02 fushuxuan1 阅读(25) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示