无法将void转换为int[],并且必须具有返回类型
本文关键字:返回类型 void 转换 int | 更新日期: 2023-09-27 18:22:05
我写了一段代码,但其中有错误,我不知道如何修复它们,因为我还是编程新手。
static public int prodtab(int[] base1)
{
int output = 1;
for (int i = 0; i < base1.Length; i++)
{
output *= base1[i];
}
return output;
}
static public void annuletab(int[] base1, int pos1, int pos2)
{
base1 = base1.Where((nimporte, i) => i < pos1 || i > pos2).ToArray();
}
static void Main(string[] args)
{
Console.WriteLine("Entrez la premiere position");
position1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Entrez la deuxieme position");
position2 = Convert.ToInt32(Console.ReadLine());
int[] newvec = annuletab(vec, position1, position2);
有人能猜出错误是什么吗?
欢迎使用编程!
写入时,annuletab
不返回任何内容。试试这个:
static public int[] annuletab(int[] base1, int pos1, int pos2)
{
var base2 = base1.Where((nimporte, i) => i < pos1 || i > pos2).ToArray();
return base2;
}