查找出数组中的重复数,按数字在原始数组中第一次出现的顺序输出,最好用list方法,求大神帮忙 5
usingSystem;namespaceExam_1{classProgram{staticvoidMain(string[]args){int[]numbers=ne...
using System;
namespace Exam_1
{
class Program
{
static void Main(string[] args)
{
int[] numbers = new int[] { 3, 1, 2, 1, 3, 3, 4, 5, 6, 5 };
int[] result = Check(numbers);
foreach (var item in result)
{
Console.WriteLine(item);
}
Console.ReadKey();
}
/// 查找出数组中的重复数,按数字在原始数组中第一次出现的顺序输出
/// 例如:
/// 输入:3, 1, 2, 1, 3, 3, 4, 5, 6, 5
/// 输出:3,3,3,1,1,5,5
private static int[] Check(int[] numbers)
{
throw new NotImplementedException();
}
}
} 展开
namespace Exam_1
{
class Program
{
static void Main(string[] args)
{
int[] numbers = new int[] { 3, 1, 2, 1, 3, 3, 4, 5, 6, 5 };
int[] result = Check(numbers);
foreach (var item in result)
{
Console.WriteLine(item);
}
Console.ReadKey();
}
/// 查找出数组中的重复数,按数字在原始数组中第一次出现的顺序输出
/// 例如:
/// 输入:3, 1, 2, 1, 3, 3, 4, 5, 6, 5
/// 输出:3,3,3,1,1,5,5
private static int[] Check(int[] numbers)
{
throw new NotImplementedException();
}
}
} 展开
1个回答
展开全部
static void Main(string[] args)
{
int[] numbers = new int[] { 3, 1, 2, 1, 3, 3, 4, 5, 6, 5 };
int[] result = Check(numbers);
List<int> intList=new List<int>();
for(int i=0;i<numbers.Length;i++)
{
for(int j=i+1;j<numbers.Length;j++)
{
if(numbers[i]=int[j])
Console.WriteLine(item);
}
}
Console.ReadKey();
}
{
int[] numbers = new int[] { 3, 1, 2, 1, 3, 3, 4, 5, 6, 5 };
int[] result = Check(numbers);
List<int> intList=new List<int>();
for(int i=0;i<numbers.Length;i++)
{
for(int j=i+1;j<numbers.Length;j++)
{
if(numbers[i]=int[j])
Console.WriteLine(item);
}
}
Console.ReadKey();
}
追问
大神能不能把循环写到CHeck方法里面去?
追答
哪个其实 可以不需要的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询