当前位置:   article > 正文

蓝桥杯刷题记录之质数

蓝桥杯刷题记录之质数

记录

题目编号 1557


import java.util.Scanner;

public class Main{
    static Scanner s = new Scanner(System.in);

    static long n;
    static int cnt=0;
    static boolean[] st = new boolean[100000];
    static int[] primes = new int[10000];
    static void primes(){
        for(int i=2;i<n;i++){
            if(!st[i])
                primes[cnt++]=i;
            for(int j=0;primes[j] <=n/i;j++){
                st[primes[j]*i]=true;
                if(i % primes[j]==0)
                    break;
            }
        }
    }
    public static void main(String[] args) {
        n = s.nextLong();
        primes();
        for(int i=2;i<n;i++)
            if(!st[i])
                System.out.print(i+" ");
        System.out.println("\n" + cnt);

        s.close();
    }
}


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/345713
推荐阅读
相关标签
  

闽ICP备14008679号