Archived
1
0

optimise files

This commit is contained in:
2025-11-25 20:14:10 +08:00
Unverified
parent bb4a37acc4
commit 4e148364a9
171 changed files with 6555 additions and 0 deletions

30
CS/15.2/Program.cs Normal file
View File

@@ -0,0 +1,30 @@
using System;
using System.Threading;
namespace _15._2
{
public class RandomObjectDemo
{
static void RunIntRan(Random randObj)
{
for (int i = 0; i < 6; i++)
{
Console.Write("{0,10}", randObj.Next());
}
for (int i = 0;i < 6; i++)
{
Console.Write('{1,10}',randObj.NextDouble());
}
}
static void Fixseed(Random randObj)
{
Random fixseed = new Random();
fixseed.Next();
}
static void autoseed()
{
Thread.Sleep(1);
Console.WriteLine("时间");
}
}
}