摘要: 1. 某人年龄的立方是4位数,年龄的四次方是6位数,这10位数包含0到9,每个恰好出现一次,求他年龄多大 public class One { public static void main(String[] args) { for (int i = 10; i < 100; i++) { int 阅读全文
posted @ 2019-03-09 23:06 笺笙 阅读(248) 评论(0) 推荐(0) 编辑
摘要: import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class MD5Utils { /** * MD5加密的算法 */ public static String md5( 阅读全文
posted @ 2019-03-09 09:31 笺笙 阅读(202) 评论(0) 推荐(0) 编辑