people

Dışarıdan girilen N sayısına kadar olan asal sayıları bulan program

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Soru_Onalti
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Sayi Grin");
int _Sayi = Convert.ToInt32(Console.ReadLine());
int a;
for (int i = 2; i < _Sayi; i++)
{
a = 1;
for (int j = 2; j < i; j++)
{
if (i % j == 0)
{
a = 0;
break;
}
}
if (a == 1) Console.WriteLine(i);
}
Console.ReadLine();
}
}
}

0 yorum:

Yorum Gönder