摘要:
static void Main(string[] args) { double totalAmount = 20; int num = 10; double minAmount = 0.01; Random r = new Random(); for (int i = 1; i < num; i+ 阅读全文
摘要:
public IList<T> RandomSortList<T>(List<T> ListT) { Random random = new Random(); List<T> newList = new List<T>(); foreach (T item in ListT) { newList. 阅读全文
摘要:
var format = function (time, format) { var t = new Date(time); var tf = function (i) { return (i < 10 ? '0' : '') + i }; return format.replace(/yyyy|M 阅读全文