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