摘要: 1 #include 2 3 using namespace std; 4 5 const int Len = 66; 6 const int Divs = 6; 7 8 void Subdivide(char ar[], int low, int high, int level); 9 10 extern int main01() 11 { 12 char ... 阅读全文
posted @ 2016-06-03 17:11 岑小良 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 3 using namespace std; 4 5 void countdown(int n); 6 7 extern int main01() 8 { 9 countdown(4); 10 return 0; 11 } 12 13 void cou 阅读全文
posted @ 2016-06-03 14:47 岑小良 阅读(152) 评论(0) 推荐(0) 编辑