C/C++点点滴滴
文章平均质量分 70
rRR0VrFP
这个作者很懒,什么都没留下…
展开
-
以字符串形式返回当前系统时间,默认格式为“年月日时分秒”
以字符串形式返回当前系统时间,默认格式为“年月日时分秒”#include #include using namespace std; class CCurrentTime{private: time_t m_tDate; string m_strCurrentTime; int m_strSize;原创 2006-05-11 14:46:00 · 2262 阅读 · 1 评论 -
自定义的随机数生成类,“01二值随机数”,“01浮点随机数”,“0n整随机数”
#include using namespace std; ////////////////////////////////////////////////////////////////////////////////#include #include class CRandom{protected: static bool m_bIfInitia原创 2006-05-13 14:00:00 · 1434 阅读 · 0 评论 -
[ C++ ] [ 算法 ] [ 字符串处理 ] 以单词为单位将字符串倒序
#include #include using namespace std; ////////////////////////////////////////////////////////////////////////////////////// 函数名 const string StringReverseByWord( const string srcStrin原创 2006-06-24 16:20:00 · 1992 阅读 · 0 评论