Output 1 ~ All prime numbers between 100

Source: Internet
Author: User

tag: Prime Number current system time algorithm optimization

/* Output 1 ~ All prime numbers between 100 can only be divided by one and itself (I .e., There is no number that can be divided by this number from 2 to a natural number that is smaller than the number itself) */class testzhishu {public static void main (string [] ARGs) {Boolean flag = true; long start = system. currenttimemillis (); // get the current time (MS) for (INT I = 2; I <10000; I ++) {for (Int J = 2; j <= math. SQRT (I); j ++) {if (I % J = 0) {flag = false; break ;}} if (flag = true) system. out. println (I); flag = true;} long end = system. currenttimemillis (); system. out. println ("program execution time:" + (end-Start) + "Ms ");}}


This article is from the "First day of course" blog, please be sure to keep this source http://5453607.blog.51cto.com/5443607/1530866

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.