java计算程序执行所需时间

程序前
long start= System.currentTimeMillis();
程序后
long end= System.currentTimeMillis();
所需时间
System.out.println("时间为"+(end-start));
举例
package com.my.new1; public class zs {     public static void main(String[] args) {long start= System.currentTimeMillis();        for (int i=2;i<=10000;i++)        {boolean is=true;            for (int j=2;j<=Math.sqrt(i);j++)            {                if (i%j==0){                    is=false;                    break;                }

java计算程序执行所需时间最先出现在Python成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/29097.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>