forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
56 lines (50 loc) · 1.53 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.Adapter
{
public class Program
{
public static void Main(string[] args)
{
IScoreOperation operation = (IScoreOperation)AppConfigHelper.GetAdapterInstance();
if (operation == null)
{
return;
}
int[] scores = { 84, 76, 50, 69, 90, 91, 88, 96 };
int[] result;
int score;
Console.WriteLine("测试成绩排序结果:");
result = operation.Sort(scores);
foreach (int s in result)
{
Console.Write("{0},", s.ToString());
}
Console.WriteLine();
Console.WriteLine("查找是否有90分的人:");
score = operation.Search(scores, 90);
if (score == -1)
{
Console.WriteLine("抱歉,这个真没找到~~~");
}
else
{
Console.WriteLine("恭喜,的确存在90分选手~~~");
}
Console.WriteLine("查找是否有92分的人:");
score = operation.Search(scores, 92);
if (score == -1)
{
Console.WriteLine("抱歉,这个真没找到~~~");
}
else
{
Console.WriteLine("恭喜,的确存在92分选手~~~");
}
Console.ReadKey();
}
}
}