using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// Tamsayı dizisi içindeki değerleri büyükten küçüğe doğru sıralayan program
int[] not = { 10, 3, -5, 8, 80, 65, 35, 70 };
int gecici;
for (int i = 0; i < 7; i++)
{
for (int j = i + 1; j <= 7; j++)
{
if (not[i] < not[j])
{
gecici = not[j];
not[j] = not[i];
not[i] = gecici;
}
}
}
for (int i = 0; i <= 7; i++)
{
Console.WriteLine("{0}", not[i]);
}
}
}
}
11 Temmuz 2011 Pazartesi
Kaydol:
Kayıt Yorumları (Atom)
0 yorum:
Yorum Gönder