02 2019 档案
随机生成6位包含数字大小写字母的验证码
摘要:package week;/** * 26为字母 * 十二位数字 * */public class AllCharacter { public static char[] charArray() { int i = 1234567890; String s = "qwertyuiopasdfghjk 阅读全文
posted @ 2019-02-27 16:50 郑富兴 阅读(564) 评论(0) 推荐(0)
随机9个电话号码
摘要:package week; import java.util.Random; public class TelePhoneNumber { public static void main(String[] args) { Random random = new Random(); int[] num 阅读全文
posted @ 2019-02-27 16:30 郑富兴 阅读(165) 评论(0) 推荐(0)
计算机属性 其中组成部分有CPU 硬盘 内存
摘要:CUP package week; public interface CPU { public String brand(String brand); public String frequence(String brand);} 硬盘 package week; public interface 阅读全文
posted @ 2019-02-19 10:07 郑富兴 阅读(136) 评论(0) 推荐(0)