Arşiv
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DongulerDoWhile1 { class Program { static void Main(string[] args) { int sayac = 0; do { Console.WriteLine(sayac); sayac++; } while (sayac<10); Console.ReadKey(); } } }
81 defa okundu | Henüz yorum yok.
Ağu 12th, 2010 | Filed under DoWhile
Son Yorumlar