摘要: 1 /* 2 Name: Dev-C++ 5.10 使用指南 3 File: DebugTest.cpp 4 Copyright: 5 Author: Tony Ju 6 Date: 29/10/18 23:58 7 Description: 8 1、常用快捷键 9 2、调试的流程 10 11 */... 阅读全文
posted @ 2018-10-30 00:10 juxq 阅读(1983) 评论(0) 推荐(0)
摘要: #include #include #include #include // qsort head file #include // sort head file using namespace std; int cmp(const void *a, const void *b) { //return (*(int *)a-*(int *)b); // 升序排列 re... 阅读全文
posted @ 2018-10-03 17:08 juxq 阅读(246) 评论(0) 推荐(0)
摘要: #include #include #include using namespace std; int main() { // 2^16 = 32768 : unsigned short // 2^32 = 4.29497e+009 : unsigned int, long // 2^64 = 1.84467e+019 : unsigned long long ... 阅读全文
posted @ 2018-10-03 10:57 juxq 阅读(1603) 评论(0) 推荐(0)
摘要: 1 #include 2 using namespace std; 3 4 int fab(int n) 5 { 6 if (n == 1 || n == 2) 7 { 8 return 1; 9 } else { 10 return fab(n - 2) + fab(n - 1); 11 } 12 1... 阅读全文
posted @ 2018-10-02 15:41 juxq 阅读(442) 评论(0) 推荐(0)
摘要: 开通博客,分享技术心得!2013-05-13 阅读全文
posted @ 2014-05-13 09:52 juxq 阅读(135) 评论(0) 推荐(0)