博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode----204. Count Primes(Java)
阅读量:6834 次
发布时间:2019-06-26

本文共 836 字,大约阅读时间需要 2 分钟。

 

1 package countPrimes204; 2 /* 3  * Description: 4  * Count the number of prime numbers less than a non-negative number, n. 5  */ 6 public class Solution { 7     //Time Limit Exceeded 8     /* 9     public static int countPrimes(int n) {10         int number=0;11         for (int i=0;i
1;19 else if (n%2==0||n%3==0)20 return false;21 else{22 for(int i=2;i<=Math.sqrt(n);i++){23 if(n%i == 0)24 return false;25 }26 }27 return true;28 }29 */30 31 public static int countPrimes(int n) {32 //boolean default is false33 boolean[] IsPrime=new boolean[n];34 int numPrime=0;35 for (int i=2;i

 

转载于:https://www.cnblogs.com/luluqiao/p/5869842.html

你可能感兴趣的文章
解决IE6浏览器下position:fixed固定定位问题
查看>>
Rest分页接口开发
查看>>
Mybatis中oracle如何批量insert语句
查看>>
org.aspectj.lang.JoinPoint-中文简要API(转)
查看>>
面向对象知识
查看>>
数据库中算式的简单例子
查看>>
AVFoundation自定义拍照
查看>>
测试显示GitHub的Gist
查看>>
JavaScript学习——JavaScript基础
查看>>
JSP学习-07Cookie 与Session
查看>>
对对象使用[]的方式使用属性的一个例子的理解
查看>>
MS .NET企业级应用架构设计笔记1(关于业务层)
查看>>
【Codeforces Round #406 (Div. 2)】题解
查看>>
php基本语法
查看>>
页面加载顺序的问题
查看>>
防止人为误操作MySQL数据库技巧一例
查看>>
送给自己的春节回家最佳高薪充电技术
查看>>
用什么样的个人笔记类软件?OneNote、EverNote(印象笔记)、为知笔记、麦库记事、有道云笔记……...
查看>>
运维监控利器Nagios:概念、结构和功能
查看>>
《Python从小白到大牛》第7章 运算符
查看>>