摘要: 1 #include 2 using namespace std; 3 #include 4 #include 5 const int MAX_SIZE = 9; 6 7 //int result[MAX_SIZE][MAX_SIZE] = { 8 // {1, 2, 3, 4, 5, 6, 7, 8, 9}, 9 // {4, 6... 阅读全文
posted @ 2016-11-12 15:04 CalmReason 阅读(435) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 int main(int , char**) 9 { 10 std::string str("a b c 123 !"); 11 cout itrBegin(ss),itrEnd; 15 ... 阅读全文
posted @ 2016-11-12 12:45 CalmReason 阅读(290) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 int main(int , char**) 9 { 10 std::string str("a b c 123 !"); 11 cout itrBegin(ss),itrEnd; 15 ... 阅读全文
posted @ 2016-11-12 12:41 CalmReason 阅读(258) 评论(0) 推荐(0)
摘要: 1 #pragma once 2 3 #include 4 #include 5 #include 6 7 using namespace std; 8 9 class CBigInt 10 { 11 public: 12 CBigInt(void); 13 CBigInt(const string& _str); 14 CBigInt& S... 阅读全文
posted @ 2016-11-12 12:22 CalmReason 阅读(963) 评论(0) 推荐(0)