gpt4 book ai didi

c# - 返回随机数类型问题

转载 作者:太空宇宙 更新时间:2023-11-03 18:18:26 24 4
gpt4 key购买 nike

我正在尝试从方法中返回随机数,但显然隐式类型是不正确的。它说:“无法将类型'Randomize.RandomNumber'隐式转换为'int'”

RandomNumber.cs:

using System;
using System.Collections.Generic;
using System.Text;

namespace Randomizer
{
class RandomNumber
{
public int RandomInRange(int l, int u)
{
Random generator = new Random();
return generator.Next(l, u);
}

}
}


Program.cs:

using System;
using System.Collections.Generic;
using System.Text;

namespace Randomizer
{
class Program
{
static void Main(string[] args)
{
Console.Out.WriteLine("Please enter the minimum range for the random number\n");
int min = int.Parse(Console.In.ReadLine());

Console.Out.WriteLine("Please enter the maximum range for the random number\n");
int max = int.Parse(Console.In.ReadLine());

int RandomInt = new RandomNumber();

Console.Out.WriteLine("Your random number is: " + RandomInt.RandomInRange(min, max));

Console.In.ReadLine();
}
}

}


我知道这几乎是一个菜鸟问题,但是我已经习惯了C ++。我在这里先向您的帮助表示感谢。 =]

最佳答案

您只是在初始化RandomNumber类的实例。您应该说:

RandomNumber random = new RandomNumber();
int randomInt = random.RandomRange(min,max);

关于c# - 返回随机数类型问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2367876/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com