-C## consolede asal sayi programi
Kod:
using System;
namespace ConsoleApplication2
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
Git:
Console.Write("Asal Olup Olmadığını Öğrenmek İstediğiniz Sayıyı Giriniz:");
string a=Console.ReadLine();
int d = Convert.ToInt32(a);
int b;
int c=0;
if (d>100)
goto Git;
{
for (b = 2; b < d; b ++)
{
if (d % b==0) c++;
}
if (c==0)
{
Console.WriteLine("Bu Sayı Asaldır:"+a);
}
else if (c>0)
{
Console.WriteLine("Bu Sayı Asal Değildir:"+a);
}
Console.ReadLine();
}
}
}
}