上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 68 下一页
摘要: 程序员必读书单 1.0 发表于 2015-02-25 | 分类于 阅读 | 本文把程序员所需掌握的关键知识总结为三大类19个关键概念,然后给出了掌握每个关键概念所需的入门书籍,必读书籍,以及延伸阅读。旨在成为最好最全面的程序员必读书单。 前言 Reading makes a full man; co 阅读全文
posted @ 2018-01-07 14:11 喵小喵~ 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1 //选择排序法 2 #include 3 #include 4 5 6 void main() 7 { 8 9 int a[10]; 10 //初始化数组 11 for (int i = 0; i a[j + 1]) 32 { 33 int tmp = a[j]; 34 ... 阅读全文
posted @ 2018-01-05 22:45 喵小喵~ 阅读(173) 评论(0) 推荐(0) 编辑
摘要: //选择排序法 #include #include void main() { int a[10]; //初始化数组 for (int i = 0; i < 10; i++) { a[i] = rand() % 10; } //打印数组 for (int i = 0; i < 10; i++) { ... 阅读全文
posted @ 2018-01-05 21:25 喵小喵~ 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #define PI 3.14159 6 #define R 150 7 8 void main() 9 { 10 //获取窗口 11 HWND hnd = FindWindowA("TXGuiFoundation", "QQ"); 12 if (hnd... 阅读全文
posted @ 2018-01-05 17:42 喵小喵~ 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 第三章 控制语句 一、选择题 1. 以下语句中无限循环语句是 B 。 A)for(;2&5;); 10 101 //不是无限循环 B)while(1,2,3); 1,2,3 3 C)while(‘\0’); D)for(;’\0’;); '0' '\0' 0 // %d 48 0 0 //0,为空 阅读全文
posted @ 2018-01-04 09:27 喵小喵~ 阅读(2206) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 4 int add(int a, int b) 5 { 6 int sum, jinwei; 7 do 8 { 9 //没进位的加法结果 10 sum = a^b; 11 //求出总的进位 12 jinwei = (a&b) << 1; ... 阅读全文
posted @ 2018-01-03 19:13 喵小喵~ 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 1.dll文件: 2.调用dll文件 运行截图: 阅读全文
posted @ 2018-01-03 18:40 喵小喵~ 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 相关代码:链接:https://pan.baidu.com/s/1pKVVUZL 密码:e3vf 阅读全文
posted @ 2018-01-02 17:45 喵小喵~ 阅读(837) 评论(0) 推荐(0) 编辑
摘要: 多字节模式下: CString -->char * 1 CString str1 ="123"; 2 char *t1 =str1.GetBuffer(str1.GetLength()); 3 str1.ReleaseBuffer(); char * -->CString CString -->in 阅读全文
posted @ 2018-01-02 17:30 喵小喵~ 阅读(540) 评论(0) 推荐(0) 编辑
摘要: 移植到mfc: mfc代码: 链接:https://pan.baidu.com/s/1pLywkDd 密码:wm30 阅读全文
posted @ 2018-01-02 11:34 喵小喵~ 阅读(442) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 68 下一页