zl程序教程

您现在的位置是:首页 >  后端

当前栏目

C# 生成1-100的随机数

c# 生成 100 随机数
2023-09-11 14:22:03 时间

Random r = new Random();
int num = r.NextInteger(1,101);