1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| { int [] dizi = new int [10]; for ( int i = 0; i < 10; i++) { Console.Write( "{0}.Sayıyı Giriniz= " , i); dizi[i] = Convert.ToInt32(Console.ReadLine()); } Console.WriteLine( "xxxxxxxxxxxxx" ); for ( int i = 9; i > 0; i--) { Console.WriteLine( "Dizinin {0} Elemanı={1}" , i, dizi[i]); } Console.WriteLine( "xxxxxxxxxxxxx" ); Console.Write( "Kaçıncı elemanı görmek istiyorsunuz = " ); int sayi = Convert.ToInt32(Console.ReadLine()); Console.WriteLine( "{0}. elemanı ={1}" , sayi, dizi[sayi]); Console.ReadLine(); } |
English: My name is Tahir Kabak I was born in Istanbul. Since childhood, I've always interested in computers and I decided to study information technology. | Türkçe: Benim Adım Tahir Kabak, İstanbulda doğdum. Çocukluğumdan beri bilgisayarlara ilgi duydum ve bilişim teknolojileri okumaya karar verdim.
13 Mart 2016 Pazar
Bir Dizi Örneği C# Console
Kaydol:
Kayıt Yorumları (Atom)
Hiç yorum yok:
Yorum Gönder