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
|
namespace ConsoleApplication2 { class Program { static void Main( string [] args) { List< int > list = new List< int >(); Random ran = new Random(); while ( true ) { if (list.Count >= 100) { break ; } int s = ran.Next(1, 101); if (!list.Contains(s)) { list.Add(s); } } list.Sort(); foreach ( int i in list) { Console.Write(i + " " ); } Console.ReadKey(); } } } |