murat335
New member
- Katılım
- 10 Eyl 2005
- Mesajlar
- 874
- Reaction score
- 0
- Puanları
- 0
- Yaş
- 43
		PHP:
	
	using System; 
using System.Collections.Generic; 
using System.Text; 
namespace ConsoleApplication1 
{ 
class Program 
{ 
static void Main(string[] args) 
{ 
int[] dizi = new int[5]; 
int sayi=0; 
for (int i = 0; i < dizi.Length; i++) 
{ 
Console.Write("{0}.Sayıyı Giriniz = ",i+1); 
dizi[i]=int.Parse(Console.ReadLine()); 
} 
for (int i = 0; i < dizi.Length; i++) 
{ 
for (int j = i; j < dizi.Length; j++) 
{ 
sayi = dizi[i]; 
dizi[i] = dizi[j]; 
dizi[j] = sayi; 
} 
} 
Console.Write("Sayılar >"); 
for (int i = 0; i < dizi.Length; i++) 
{ 
Console.Write(" {0} ",dizi[i]); 
} 
} 
} 
}
_________________ 
				 
						 
 
		