c#随机数的产生与输出【C#】
c#隨機(jī)數(shù)的產(chǎn)生與輸出
題目描述
編寫一個實例方法Method01。該方法使用Random類隨機(jī)產(chǎn)生n個3位數(shù)字(如636)的隨機(jī)正整數(shù),并把產(chǎn)生的隨機(jī)數(shù)存入數(shù)組中并輸出該數(shù)組int num= Convert.ToInt32(Console.ReadLine());
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
? ? class Program
? ? {
? ? ? ? static void Main(string[] args)
? ? ? ? {
? ? ? ? ? ? int num= Convert.ToInt32(Console.ReadLine());
? ? ? ? ? ? Program.Method01(num);
? ? ? ? }
/*******************
? ? ? ? ?
? ? ? 在此處填寫代碼
********************/
? ? }
}
?
?
輸入
n
輸出
隨機(jī)產(chǎn)生的數(shù)組
樣例輸入
3樣例輸出
636 555 545提示
static void Method01(int n){Random ran = new Random();for (int i = 0; i < n; i++){Console.WriteLine(ran.Next(100, 999));}}?
總結(jié)
以上是生活随笔為你收集整理的c#随机数的产生与输出【C#】的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C#提取文件名【C#】
- 下一篇: Angular实现dialog对话框封装