14 Mayıs 2016 Cumartesi

Csharp'ta Static Void'den Veri Okuma Örneği -33


using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _22__staticvoid_veri_okuma_örnek { class Program { public static void Main() { numbers(30); } public static void numbers(int target) { int start = 0; while (start <= 30) { Console.WriteLine(start); start = start + 5; } } } }

Hiç yorum yok:

Yorum Gönder