关于java的问题,具体程序编写
编程实现35选7彩票销售程序。用户从键盘输入要买彩票的注数n,程序随机产生n注号码并输出。每注号码为7个1~35的随机整数,每注7个号码中不能有重复号码。要具体程序!...
编程实现35选7彩票销售程序。用户从键盘输入要买彩票的注数n,程序随机产生n注号码并输出。每注号码为7个1~35的随机整数,每注7个号码中不能有重复号码。要具体程序!
展开
1个回答
展开全部
import java.util.Scanner; public class test { public static void main( String[] args ) { int[] a = new int[35]; for ( int i = 0; i < 35; ++i ) { a[i] = i + 1; } int n; Scanner s = new Scanner( System.in ); n = s.nextInt(); select( a, n ); } static void select( int[] a, int n ) { for ( int i = 0; i < n; ++i ) { shuffle( a ); System.out.print( "第"+ (i+1) +"注:" ); for ( int j = 0; j < 7; ++j ) { System.out.print( a[j] + " " ); } System.out.println(); } } static void shuffle( int[] a ) { int t, tmp; for ( int i = 0; i < a.length; ++i ) { t = (int)(Math.random()*35); tmp = a[t]; a[t] = a[i]; a[i] = tmp; } } }
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询