随笔分类 - CCF
摘要:思路 暴力解决 注意事项 数字转字符,字符转数字 code=10的时候,是'X' #include<bits/stdc++.h> using namespace std; /* run this program using the console pauser or add your own get
阅读全文
摘要:万能函数头 #include<bits/stdc++.h> 命名空间的声明 using namespace std;
阅读全文
摘要:思路 用数组下标作为数字,数组元素记录次数 注意事项 声明数组的时候,如果用 int index[10000]; 会出现不为0的随机数 #include<bits/stdc++.h> using namespace std; /* run this program using the console
阅读全文