-
UID:1177
-
- 注册时间2006-03-21
- 最后登录2009-03-24
- 在线时间675小时
-
- 发帖3743
- 搜Ta的帖子
- 精华
1
- 铜板8
- 人品值493
- 贡献值9
- 交易币0
- 好评度3746
- 信誉值0
- 金币0
-
访问TA的空间加好友用道具
- 发帖
- 3743
- 铜板
- 8
- 人品值
- 493
- 贡献值
- 9
- 交易币
- 0
- 好评度
- 3746
- 信誉值
- 0
- 金币
- 0
- 所在楼道
|
- #include <studio.h>
- #include <windows.h>
- int WINAPI WinMain(HINSTANCE,HINSTANCE,LPSTR,int)
- {
- HDC myDC;
- RECT ScrRect;
- GetWindowRect(GetDesktopWindow(), &ScrRect);
- myDC=GetDC((HWND)0);
- for(long i=0; i<100000; i++)
- {
- int x, y, width, height;
- x=(rand()%ScrRect.right)/2+(width=rand()%3);
- y=rand()%ScrRect.bottom-(height=rand()%3);
- BitBlt(myDC, x, y, x+width, y+height, myDC, x+rand()%3-1, y-rand()%2, SRCCOPY);
- }
- ReleaseDC((HWND)0, myDC);
- InvalidateRect(0, NULL, TRUE);
- return 0;
- }
#aua6V!" Img$D*BM (6crWw{3 呵呵 能看出什么算法吗
|