2017年10月6日

我制作的圆形时钟动态程序

摘要: 完整演示视频链接: http://v.youku.com/v_show/id_XMzA2NDkxNzQwNA==.html?spm=a2h3j.8428770.3416059.1 演示截图: 阅读全文

posted @ 2017-10-06 20:25 sunshineman1986 阅读(219) 评论(0) 推荐(0)

我制作的中秋快乐动态程序

摘要: 完整演示视频链接: http://v.youku.com/v_show/id_XMzA2NDkxNzQwNA==.html?spm=a2h3j.8428770.3416059.1 演示截图: 阅读全文

posted @ 2017-10-06 20:24 sunshineman1986 阅读(181) 评论(0) 推荐(0)

我制作的跑马灯

摘要: 完整演示视频链接: http://v.youku.com/v_show/id_XMzA2NDkxNzQwNA==.html?spm=a2h3j.8428770.3416059.1 演示截图: 阅读全文

posted @ 2017-10-06 20:23 sunshineman1986 阅读(121) 评论(0) 推荐(0)

我制作的标准五星红旗

摘要: 阅读全文

posted @ 2017-10-06 20:16 sunshineman1986 阅读(188) 评论(0) 推荐(0)

我制作的国际象棋棋盘

摘要: 阅读全文

posted @ 2017-10-06 20:15 sunshineman1986 阅读(369) 评论(0) 推荐(0)

我制作的中国象棋棋盘

摘要: 阅读全文

posted @ 2017-10-06 20:12 sunshineman1986 阅读(594) 评论(0) 推荐(0)

2017年10月5日

GetSystemTimes函数实验(动态获得CPU占用率和CPU闲置率)

摘要: #include #include #include using namespace std;int CompareFileTime(FILETIME time1, FILETIME time2){ int a = time1.dwHighDateTime #include #include usi... 阅读全文

posted @ 2017-10-05 18:17 sunshineman1986 阅读(1201) 评论(0) 推荐(0)

GetSystemInfo函数实验

摘要: #include #include #include using namespace std;int main(){ SYSTEM_INFO SystemInfo; GetSystemInfo(&SystemInfo); cout << left << setw(20) << "CPU分页大小:" ... 阅读全文

posted @ 2017-10-05 18:17 sunshineman1986 阅读(151) 评论(0) 推荐(0)

Dev C++编写的Windows窗口Hello,World程序

摘要: #include #include /* 使类名成为全局变量 */TCHAR szClassName[ ] = TEXT("WindowsApp"); /* 这个函数由Windows函数DispatchMessage()调用 */LRESULT CALLBACK WindowProcedure (... 阅读全文

posted @ 2017-10-05 18:17 sunshineman1986 阅读(5531) 评论(0) 推荐(0)

Dev C++新建Windows应用程序时的main函数模板

摘要: 第一次发现!很新鲜哦!#include /* This is where all the input to the window goes to */LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lPa... 阅读全文

posted @ 2017-10-05 18:17 sunshineman1986 阅读(1193) 评论(0) 推荐(0)

导航