gpt4 book ai didi

java - 如何在一行代码中生成 8 位长的 0's and 1' 随机字符串?

转载 作者:行者123 更新时间:2023-12-01 07:18:58 25 4
gpt4 key购买 nike

public class Main {
public static void main(String[] args) {
// generate a random String of 0's and 1's that is 8 digits long
System.out.println("Print the string of 0's and 1's");
}
}

I want to do it in just one, and only one line of code.

最佳答案

您还可以使用 IntStream 来完成此操作。它不是一个很好的解决方案,因为它实例化了多个 Random 对象,但它只有一行代码:

IntStream.rangeClosed(1, 8).forEach(x->System.out.print(new Random().nextInt(2)));

关于java - 如何在一行代码中生成 8 位长的 0's and 1' 随机字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46965807/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com