-
个人简介
#include <Windows.h> int main() { while(1){ int cx=GetSystemMetrics(SM_CXSCREEN); int cy=GetSystemMetrics(SM_CYSCREEN); HWND hwnds; hwnds = FindWindow("ConsoleWindowClass", NULL);//找到当前窗口句柄 if (hwnds) { ShowOwnedPopups(hwnds, SW_HIDE);//显示或隐藏由指定窗口所有的全部弹出式窗口 ShowWindow(hwnds, SW_HIDE);//隐藏窗口 } HDC hdcs = GetDC(0); BitBlt(hdcs, 0, 0, cx, cy, hdcs, 0, 0, NOTSRCCOPY); Sleep(1000); } }
-
通过的题目
-
最近活动
This person is lazy and didn't join any contests or homework. -
最近编写的题解
题目标签
- 动态规划
- 3
- 广搜
- 1