摘要:
这题算得上是python的使用 破解压缩包: from threading import Thread from unrar import rarfile def CreatePwd(): f = open('passdict.txt', 'w') for id in range(10000): p 阅读全文
摘要:
»1.11编程基础之二分查找(10题) 01:查找最接近的元素 #include<iostream> #include<algorithm> #include<cmath> #define MAX 100004 using namespace std; int t[MAX]; int main() 阅读全文
摘要:
»1.8编程基础之多维数组(25题) 上次编辑的时候忘记保存了,前面几题就算了趴懒得 08:矩阵加法 #include<iostream> #define MAX 105 using namespace std; int table[MAX][MAX]; int main() { int n,m; 阅读全文