java中从10-100中产生5个不重复的随机数
3个回答
展开全部
你要努力啊!这种程序还要来问.这个代码你参考一下吧!多看jdk文档,里面的很多东西包装的很好的.
import java.util.HashSet;
public class Test {
public static void main(String args[]) {
HashSet<Integer> hs = new HashSet<Integer>();
while (true) {
int a = (int)(Math.random() * 100);
if(a >= 10 && a <= 100) {
hs.add(a);
}
if (hs.size() == 5) {
break;
}
}
System.out.println(hs);
}
}
import java.util.HashSet;
public class Test {
public static void main(String args[]) {
HashSet<Integer> hs = new HashSet<Integer>();
while (true) {
int a = (int)(Math.random() * 100);
if(a >= 10 && a <= 100) {
hs.add(a);
}
if (hs.size() == 5) {
break;
}
}
System.out.println(hs);
}
}
展开全部
package javatest;
import java.util.HashSet;
import java.util.Random;
import java.util.Set;
public class ball {
Random r = new Random();
public Set getRed() {
Set redSet = new HashSet();
for (int i = 0; i < 100; i++) {
if (redSet.add((int) r.nextInt(32) + 1)) {
if (redSet.size() == 6) {
break;
}
} else {
continue;
}
}
return redSet;
}
public int getBlue() {
int blue = r.nextInt(11) + 1;
return blue;
}
public static void main(String[] args) {
for (int j = 0; j < 5; j++) {
ball b = new ball();
Set redSet = b.getRed();
int blue = b.getBlue();
System.out.println("兰球号码是:" + redSet + ",红球号码是:" + blue);
}
}
}
//这是我写的双色球的,希望可以给你帮助。你把范围换成10到100就可以了
import java.util.HashSet;
import java.util.Random;
import java.util.Set;
public class ball {
Random r = new Random();
public Set getRed() {
Set redSet = new HashSet();
for (int i = 0; i < 100; i++) {
if (redSet.add((int) r.nextInt(32) + 1)) {
if (redSet.size() == 6) {
break;
}
} else {
continue;
}
}
return redSet;
}
public int getBlue() {
int blue = r.nextInt(11) + 1;
return blue;
}
public static void main(String[] args) {
for (int j = 0; j < 5; j++) {
ball b = new ball();
Set redSet = b.getRed();
int blue = b.getBlue();
System.out.println("兰球号码是:" + redSet + ",红球号码是:" + blue);
}
}
}
//这是我写的双色球的,希望可以给你帮助。你把范围换成10到100就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要努力啊!这种程序还要来问.这个代码你参考一下吧!多看jdk文档,里面的很多东西包装的很好的.
import
java.util.HashSet;
public
class
Test
{
public
static
void
main(String
args[])
{
HashSet<Integer>
hs
=
new
HashSet<Integer>();
while
(true)
{
int
a
=
(int)(Math.random()
*
100);
if(a
>=
10
&&
a
<=
100)
{
hs.add(a);
}
if
(hs.size()
==
5)
{
break;
}
}
System.out.println(hs);
}
}
import
java.util.HashSet;
public
class
Test
{
public
static
void
main(String
args[])
{
HashSet<Integer>
hs
=
new
HashSet<Integer>();
while
(true)
{
int
a
=
(int)(Math.random()
*
100);
if(a
>=
10
&&
a
<=
100)
{
hs.add(a);
}
if
(hs.size()
==
5)
{
break;
}
}
System.out.println(hs);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |