#include <Windows.h> // 如果不是在Visual Studio环境下运行的话W最好改小写。 using namespace std;int main() {for (int i = 1; i <= 10; i++) {HDC hdc = GetWindowDC(GetDesktopWindow());RECT rect;GetWindowRect(GetDesktopWindow(), &rect);StretchBlt(hdc, rect.left + 50, rect.top + 50, rect.right - 50, rect.bottom - 50, hdc, rect.left, rect.top, rect.right, rect.bottom, SRCCOPY);Sleep(1000);}return 0; }
无害,如果想无限下去就去掉循环条件。
如果想隐藏控制台就看这篇文章C++ 隐藏控制台窗口 (两种方法)-CSDN博客https://blog.csdn.net/applelin2012/article/details/135278785?spm=1001.2014.3001.5502