我需要有关此代码的帮助。我不能让它工作,所以我还不清楚。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
class Solution
{
static int[] foo(int[] array)
{
int[] xx = new int[array.Length];
for(int i = 0; i < array.Length; i++)
{
array[i] *= 2;
Console.WriteLine(array[i]);
}
return array;
}
static void Main(string[] args)
{
int[] array = new int[4] {73, 67, 38, 33 };
foo(array);
}
}
如何重建foo函数以从数组返回值?
我看到了很多关于 void 函数的帮助链接……但它们没有用。当涉及到特定类型的功能时,我无法使其工作。
谢谢
DDR8
慕娘9325324
一只名叫tom的猫
相关分类