码迷,mamicode.com
首页 > 其他好文 > 详细

求素数(网上找的,仅自用,非原创)

时间:2018-04-07 16:08:34      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:int   isp   not   stat   line   console   cep   oid   blog   

using System;
namespace Other_Features
{
public class Prime
{
public int number;
public Prime(int n)
{
if(isPrime(n))
this.number=n;
else
throw new Exception (n+" is not a prime.");
}
public static Prime operator ++ (Prime orig)
{
bool succeeded =false;
while(!succeeded)
succeeded=isPrime(++orig.number );
return orig;
}
public static bool isPrime(int number)
{
int max=(int)(number/2+1);
for(int i=2;i<max;++i)
if(number%i==0)
return false;
return true;
}
public static void Main()
{
Prime p=new Prime (1);
for(int i=0;i<100;++i)
{
Console.WriteLine (p.number);
++p;
}
}
}
}

求素数(网上找的,仅自用,非原创)

标签:int   isp   not   stat   line   console   cep   oid   blog   

原文地址:https://www.cnblogs.com/hsyv123ve/p/8733312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!