第一篇:C++之hello world

1.编辑器:Microsoft Visual C++ 2010,下载安装

2.新建项目

代码:

#include <iostream>
#include <Windows.h>
/*
1.网站404攻击
2.网站篡改攻击
3.网站攻击记录
4.DNS攻击
5.服务器重启攻击

*/

int main(void) {

std::cout<< "1.网站404攻击" << std::endl;
std::cout<< "2.网站篡改攻击" << std::endl;
std::cout<< "3.网站攻击记录" << std::endl;
std::cout<< "4.DNS攻击" << std::endl;
std::cout<< "5.服务器重启攻击" << std::endl;
printf("你好\n");
system("ping wwww.baidu.com");

system("pause");
return 0;

}

猜你喜欢

转载自www.cnblogs.com/51testing/p/11601450.html