08 2023 档案

摘要:皮肤站网址 百度网址 博客园网址 慧编程网址 语雀网址 中国电子学会网址 蓝桥杯网址 C++刷题网址 阅读全文
posted @ 2023-08-14 17:54 陈若麟 阅读(8) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main(){ int a[10]={1,3,5,8,9,10,7,78,65,2}; for(int i=0;i<10;i++){ for(int j=i+1;j<10;j++){ if(a[i]>a[j]) 阅读全文
posted @ 2023-08-12 17:07 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main() { int n,m; cin>>n>>m; int a[n+1]; int b[n],c[n],d[n]; for(int i=1;i<n+1;i++){ cin>>a[i]; } for(int 阅读全文
posted @ 2023-08-11 17:17 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main(){ long long n; cin>>n; long long f[n+1]; f[1]=1; f[2]=1; for(int i=3;i<=n;i++){ f[i]=f[i-1]+f[i-2]; 阅读全文
posted @ 2023-08-11 17:15 陈若麟 阅读(10) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <iomanip> #include <Windows.h> #include <cstdlib> #include <ctime> using namespace std; int main(){ int h,l,a,b,c[3],d[3] 阅读全文
posted @ 2023-08-11 17:13 陈若麟 阅读(13) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <iomanip> using namespace std; int row=16; int col=16; int all[17][17]; bool black=true; bool whilt; int x,y; int a=1; in 阅读全文
posted @ 2023-08-11 17:11 陈若麟 阅读(22) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; bool a(string n){ if(n[0]==n[n.size()-1]){ if(n.size()<=3){ return 1; }else{ n=n.substr(1,n.size()-2); a(n); 阅读全文
posted @ 2023-08-11 17:06 陈若麟 阅读(14) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> using namespace std; int main(int argc, char** argv) { int n; cin>>n; char a[n]; int b; for(int i=0;i<n;i++){ cin>>a[i]; if(a[i]<= 阅读全文
posted @ 2023-08-11 17:04 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑