码迷,mamicode.com
首页 > 编程语言 > 详细

Java 输入一组数字,用穷举的方法列出

时间:2018-10-16 13:41:05      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:%s   pwd   next   穷举   scanner   lis   The   you   str   

import java.util.Scanner;

public class TestScanner {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.print("Password: ");
        long password = scanner.nextLong();
        
        long pwd = 0;
        long t1 = System.currentTimeMillis();
        while (pwd != password) {
            ++pwd;
        }
        long t2 = System.currentTimeMillis();
        System.out.printf("The password you entered is %s\n", password);
        System.out.printf("elapsed time: %s ms", (t2 - t1));
        scanner.close();
    }
}

 

Java 输入一组数字,用穷举的方法列出

标签:%s   pwd   next   穷举   scanner   lis   The   you   str   

原文地址:https://www.cnblogs.com/Satu/p/9797203.html

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