web site statistics

punyadimas.com

.:: semua punyadimas ! ::.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Prima
{
class Program
{
static void Main(string[] args)
{
bool isPrima;
string x = Console.ReadLine();
int JumlahBilangan = Convert.ToInt32(x);
int i = 0;
int bilanganPrima = 2;
while (i < JumlahBilangan)
{
isPrima = true;
for (int j = 2; j < bilanganPrima; j++)
{
if (bilanganPrima % j == 0)
isPrima = false;
}
if (isPrima == true)
{
Console.WriteLine(bilanganPrima);
i++;
Console.ReadLine();
}
bilanganPrima++;
}
}
}
}

No Comments :(