java计算n以内的质数_求正整数n以内的所有质数个数并给出计算时间

[java]代码库package homework;

import java.util.ArrayList;

import java.util.Date;

import java.util.Scanner;

public class 求正整数n以内的所有质数个数 {

public static int check(int n){

int temp,j,re=3;

if(n==2)

re=1;

else {

for (j = 2; j < n; j++) {

temp = n % j;

if (temp != 0)

re = 1;

else {

re = 0;

break;

}

}

}

return re; //re=1则是,=0不是

}

public static void main(String[] args) {

Scanner reader=new Scanner(System.in);

int n;

System.out.println("enter the number");

n=reader.nextInt();

long start=new Date().getTime();

int i,j=0;

for(i=2;i

int re=check(i);

if(re==1)

j+=1;

}

long end=new Date().getTime();

System.out.println(j);

System.out.println("cost time "+(end-start)+"ms");

}

}

[代码运行效果截图]

930e1bf082af55b8f6b4936f09cdd0ce.png

694748ed64b9390909c0d88230893790.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值