取随机数()


CString 取随机数(int 最小值, int 最大值){
	CString str;
	int a = rand() % (最大值-最小值+1);
	str.Format(_T("%d"), a+最小值);
	return str;
}