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成神之路。
共有 0 条评论