- public class zhou {
- /**
- * @param args
- */
- public static void main(String[] args) {
- long a = System.currentTimeMillis();
- for (int i = 0; i < 1000; i++) {
- for (int j = 0; j <1000-i; j++) {
- System.out.print("*");
- }System.out.println();
-
- }
- long b =System.currentTimeMillis();
- System.out.println(b-a);
- }
- }
复制代码 |
|