继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

java入门第三季,6-5课后作业

qq_Goldeave_03748385
关注TA
已关注
手记 1
粉丝 0
获赞 0

初学者,捣鼓出的一个作业,('')。

public void testSrot22() {
        List<String> stringList = new ArrayList<String>();
        for (int i = 0; i < 10; i++) {
            Random k = new Random();
            Integer k1 = k.nextInt(9) + 1;
            String num1 = "";
            for (int j = 0; j < k1; j++) {
                Random random = new Random();
                Integer num = random.nextInt(10);
                num1 += num;
            }
            stringList.add(num1);
        }
        for (String string : stringList)
            System.out.println(string);
    }
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP