码迷,mamicode.com
首页 > 其他好文 > 详细

Problem 005

时间:2018-02-06 13:01:08      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:最小   cal   gpo   class   static   strong   .net   main   star   

欧拉计划----https://projecteuler.net/


 

最小倍数

2520是最小的能够被1到10整除的数。

最小的能够被1到20整除的正数是多少?

 

public class Problem5 {
    
    static long cal() {
        int [] a= {2,3,5,7,11,13,17,19};
        long s=0;
        out:
        while(true) {
            s++;
            for (int i = 0; i<=a.length-1; i++) {
                if(s%a[i]!=0) {
                    continue out;
                }
            }
            return s;
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();
        System.out.println(cal());
        long end = System.currentTimeMillis();
        System.out.println("runtime:" + (end - start));
    }

}

 

Problem 005

标签:最小   cal   gpo   class   static   strong   .net   main   star   

原文地址:https://www.cnblogs.com/Alice-Thinker/p/8421516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!