摘要: int change(int x, int ch){ int tmp = x; int bit[10] = {0}; char everybit[5] = {'A', 'B', 'C', 'D', 'E'}; int count = 0; while(tmp != 0) // 辗转相除法求对应进制 阅读全文
posted @ 2020-06-28 19:11 嘻嘻嘻ziixi 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>#include <stdbool.h>#include <iostream>#include <algorithm>using namespace std;#define N 300st 阅读全文
posted @ 2020-06-28 14:51 嘻嘻嘻ziixi 阅读(125) 评论(0) 推荐(0) 编辑
摘要: apt-get -y install net-tools如果权限不够命令前加sudo就欧克了之后不行的话,重启下Kali 阅读全文
posted @ 2020-05-08 23:49 嘻嘻嘻ziixi 阅读(873) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <algorithm>#include <cstdio>using namespace std;#define MAX 10000int main(){ int n,m; scanf("%d %d",&n,&m); int wen[MAX],t 阅读全文
posted @ 2020-04-21 17:19 嘻嘻嘻ziixi 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 在sqli-labs目录下打开网页源码,将这两个代码插进去就可以了,本人小白,PHP不会, 网上找了好长时间,才配好,希望对你有帮助 阅读全文
posted @ 2020-04-16 23:44 嘻嘻嘻ziixi 阅读(667) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cstdio>using namespace std;int main(){ int n,m; cin>>n>>m; char z='A';for(int i=1;i<=n;i++){ for(int j=i;j>=1;j--){ print 阅读全文
posted @ 2020-03-31 17:22 嘻嘻嘻ziixi 阅读(121) 评论(0) 推荐(0) 编辑