当前位置: 代码迷 >> Java相关 >> printf有关问题拙计
  详细解决方案

printf有关问题拙计

热度:1520   发布时间:2013-02-25 21:47:31.0
printf问题拙计
Java code
long str=System.currentTimeMillis();        ...        long end=System.currentTimeMillis();        System.out.printf("run time is %f",(end-str));


提示错误:


------解决方案--------------------------------------------------------
System.out.printf("run time is %f",(end-str));
改成%s
------解决方案--------------------------------------------------------
探讨

System.out.printf("run time is %f",(end-str));
改成%s
  相关解决方案