/*c#'ta for ve % aparatı kullanımı */
using System;
public class Test
{
public static void Main()
{
for (int Sayi = 1; Sayi <= 100; Sayi++)// Sayı 100 oluncaya kadar döngüyü çalıştır
{
Console.Write("{0} ", Sayi);
if (Sayi % 10 == 0)
{
Console.WriteLine("\t{0}", Sayi);// \t tab tuşu fonksiyonu
}// son if
}// son for
}// son Main
}
