摘要: #include <vector>using namespace std;class RandomLimitNum{public: RandomLimitNum(int begin_num,int end_num); bool GetCurrentRandomNum(int * result);private: vector<int> m_vector;};#include "stdafx.h"#include "RandomLimitNum.h"RandomLimitNum::RandomLimitNum(int begin_n 阅读全文
posted @ 2011-07-22 00:09 眼中的沙 阅读(408) 评论(0) 推荐(0) 编辑