上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
  2023年8月10日
摘要: #include <bits/stdc++.h>#include <windows.h>#define huang return#define da 0#define shan ;#define Min 10 using namespace std;int a[11][11], a2[11], a3 阅读全文
posted @ 2023-08-10 09:52 爱吃泡面的皮卡 阅读(49) 评论(0) 推荐(0) 编辑
  2023年8月8日
摘要: #include <iostream> #include <iomanip> using namespace std; int main(){ int c,d,h,s,u,t; char f; cout<<"请输入棋盘的大小"<<endl; cin>>c>>d; cout<<"请输入棋子的坐标"<< 阅读全文
posted @ 2023-08-08 20:29 爱吃泡面的皮卡 阅读(15) 评论(0) 推荐(0) 编辑
  2023年8月7日
摘要: #include <iostream> #include <cstdio> using namespace std; int main(){ char chl[1000],ch2; int num[26],i,k; for(i=0;i<26;i++){ num[i]=0; } gets(chl); 阅读全文
posted @ 2023-08-07 09:39 爱吃泡面的皮卡 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main(){ int n,a[100]={},x=0,Max=0; cin>>n; for(int i=1;i<=n;i++){ if(n%i==0){ a[x]=i; cout<<a[x] ; x++; } 阅读全文
posted @ 2023-08-07 08:27 爱吃泡面的皮卡 阅读(21) 评论(0) 推荐(0) 编辑
  2023年8月3日
摘要: #include<iostream> #include<cstdio> #include<cstring> using namespace std; int x,y,z; int a(int z){ if(z<x+2){ return 1; } return a(z-1)+a(z-x-2)*y;// 阅读全文
posted @ 2023-08-03 20:07 爱吃泡面的皮卡 阅读(43) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include "minecraft.h" #include <Windows.h> using namespace std; TxMinecraft mc; int main(int argc, char** argv) 阅读全文
posted @ 2023-08-03 09:54 爱吃泡面的皮卡 阅读(26) 评论(0) 推荐(0) 编辑
  2023年8月2日
摘要: #include<iostream> using namespace std; int main(){ int n,j=1,sum=0,data=1; cin>>n; for(int i=1;i<=n;i++){ sum+=data; if(i==j){ data++; j+=data; } } c 阅读全文
posted @ 2023-08-02 09:30 爱吃泡面的皮卡 阅读(27) 评论(0) 推荐(0) 编辑
  2023年8月1日
摘要: #include<iostream> using namespace std; //使用string字符串解决。 int main(){ string s1,s2; int n; cin>>n; for(int i=0;i<n;i++){ cin>>s1>>s2; if(s1==s2){ cout< 阅读全文
posted @ 2023-08-01 19:18 爱吃泡面的皮卡 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main(){ int a[105]={},n,b; cin>>n; for(int i=1;i<=n;i++){ cin>>b; a[b+50]++; } for(int i=-50;i<=50;i 阅读全文
posted @ 2023-08-01 19:17 爱吃泡面的皮卡 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cmath> #include <bits/stdc++.h> using namespace std; double a(double n,double x){ if(n==0){ return 1;//结尾条件 }else{ return 阅读全文
posted @ 2023-08-01 19:17 爱吃泡面的皮卡 阅读(23) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页