forwhat00  

2020年6月29日

摘要: #include<iostream> #include<algorithm> using namespace std; int nownum=0,total=0; class node{//使用链表 public: int num; int flag; node * next,*last;//需要保 阅读全文
posted @ 2020-06-29 20:56 forwhat00 阅读(127) 评论(0) 推荐(0) 编辑
 
摘要: #include<iostream> #include<cmath> using namespace std; int n,m,tow[100005],num[200005]; char names[100005][20]; char* f(int now,int nown){//输入当前的玩具序号 阅读全文
posted @ 2020-06-29 20:52 forwhat00 阅读(123) 评论(0) 推荐(0) 编辑
 
摘要: #include<iostream> #include<cmath> using namespace std; char num1[550],num2[550],ans[550];//保存输入的数以及输出的数 int f(int ind1,int ind2,int ansind,int in){ c 阅读全文
posted @ 2020-06-29 20:49 forwhat00 阅读(111) 评论(0) 推荐(0) 编辑
 
摘要: #include<iostream> using namespace std; int n,m; int map[505][505]; void show(){//显示 for(int i=0;i<n*n;i++){ cout<<map[i/n][i%n]; if(i%n<n-1)cout<<" " 阅读全文
posted @ 2020-06-29 20:44 forwhat00 阅读(185) 评论(0) 推荐(0) 编辑