赞
踩
今天给大家分享那些C++坑人必备的代码:
- #include<windows.h>
- #include<ctime>
- using namespace std;
- int main()
- {
- int x=GetSystemMetrics(SM_CXSCREEN);
- int y=GetSystemMetrics(SM_CYSCREEN);
- srand(time(NULL));
- while(1)
- {
- SetCursorPos(rand()%x,rand()%y);
- }
- return 0;
- }
重要的事情说三遍:建议不要运行,否则后果自负!建议不要运行,否则后果自负!建议不要运行,否则后果自负!
- #include<windows.h>
- #include<ctime>
- using namespace std;
-
- int main()
- {
- int x=GetSystemMetrics(SM_CXSCREEN);
- int y=GetSystemMetrics(SM_CYSCREEN);
- srand(time(NULL));
- while(1)
- {
- SetCursorPos(x/2,y/2);
- }
- return 0;
- }
- #include<windows.h>
- using namespace std;
- int main(){
- system("shutdown /s");
- return 0;
- }
shutdown更多用法见下表(记不住的话把上面代码中system("")里面改成shutdown /?会显示
参数 | 用法 | 效果 |
没有参数 | shutdown | 显示用法表 |
/? | shutdown /? | 显示用法表(跟上一个一样) |
/s | shutdown /s | 直接关机(世上没有后悔药) |
/r | shutdown /r | 重启(逃过一劫) |
/a | shutdown /a | 停止进程(丢了的魂又回来了) |
/h | shutdown /h | 休眠(跟关机差不多一个样) |
/t | shutdown /t xxx | 等待xxx秒(怎么回事?) |
/m | shutdown /m \\computer | 指定计算机(高版本有防火墙) |
/c | shutdown /c "comment" | 注释原因 |
无限窗口(这是要关机的节奏啊?!)
- #include<windows.h>
- using namespace std;
- int main(){
- while (true)
- {
- system("start cmd");
- }
- return 0;
- }
- #include<windows.h>
- using namespace std;
- int main(){
- while (true)
- {
- malloc(1000);
- }
- return 0;
- }
- #include<windows.h>
- using namespace std;
-
- int main()
- {
- if (MessageBox(NULL,"你是猪吗?","Are you a pig?",MB_YESNOCANCEL)!=IDYES)
- {
- while (MessageBox(NULL,"你是猪吗?","Are you a pig?",MB_YESNOCANCEL)!=IDYES)
- {
- }
- MessageBox(NULL,"哈哈哈你是猪!","ha ha ha you are a pig!",MB_OK);
- }
- return 0;
- }
今天就到这里,大佬有别的坑人方法多多指教~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。