leonard


私信TA

用户名:az0889

访问量:3110

签 名:

等  级
排  名 35238
经  验 434
参赛次数 0
文章发表 5
年  龄 0
在职情况 学生
学  校 广东培正学院
专  业

  自我简介:

解题思路:





注意事项:





参考代码:

import java.util.*;
public class Main {

    public static void main(String[] args) {
        Scanner a=new Scanner(System.in);
        int b=a.nextInt();
        boolean result=true;
        for(int i = 2;i<=b;i++){
            for(int j=2;j<i;j++)
            {
                if(i%j==0){
                    result=false;
                    break;
                }
                else{
                    result=true;
                }
            }
            
            if(result){
                System.out.print(i+"\n");
            }
        }
        
}
}

 

0.0分

0 人评分

  评论区

  • «
  • »