fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12.  
  13. Random random = new Random();
  14. random.setSeed(System.currentTimeMillis());
  15.  
  16. int num=0;
  17.  
  18. System.out.println("\n\t<<<< 로또복권 >>>>\n");
  19. do{
  20.  
  21. random.setSeed(System.currentTimeMillis());
  22. int a= (1+random.nextInt(45));
  23. Thread.sleep((System.currentTimeMillis()%100));
  24.  
  25. int b= (1+random.nextInt(45));
  26. Thread.sleep((System.currentTimeMillis()%100));
  27.  
  28. int c= (1+random.nextInt(45));
  29. Thread.sleep((System.currentTimeMillis()%100));
  30.  
  31. int d= (1+random.nextInt(45));
  32.  
  33. int e= (1+random.nextInt(45));
  34. Thread.sleep((System.currentTimeMillis()%100));
  35.  
  36. int f= (1+random.nextInt(45));
  37. Thread.sleep((System.currentTimeMillis()%100));
  38.  
  39. if (a!=b & b!=c & d!=e & e!=f & a!=c & a!=d & a!=e & a!=f & b!=d & b!=e& b!=f & c!=d & c!=e & c!=f & d!=f) {
  40. int temp;
  41. int[] show = new int[6];
  42. show[0] = a;
  43. show[1] = b;
  44. show[2] = c;
  45. show[3] = d;
  46. show[4] = e;
  47. show[5] = f;
  48. for (int i=0; i<show.length-1;i++) {
  49. for (int j=i+1; j<show.length;j++) {
  50. if(show[i]<show[j]) {
  51. temp = show[i];
  52. show[i] = show[j];
  53. show[j] = temp;
  54. }
  55.  
  56. }
  57.  
  58. }
  59.  
  60. System.out.print(" "+show[5]+"\t");
  61. System.out.print(show[4]+"\t");
  62. System.out.print(show[3]+"\t");
  63. System.out.print(show[2]+"\t");
  64. System.out.print(show[1]+"\t");
  65. System.out.println(show[0]+"\t");
  66. num++;
  67. }
  68.  
  69. } while(num!=5);
  70.  
  71. }
  72.  
  73. }
Success #stdin #stdout 0.14s 55300KB
stdin
Standard input is empty
stdout
	<<<<    로또복권        >>>>

 3	12	13	35	41	42	
 3	4	21	23	34	45	
 13	15	18	25	34	45	
 11	15	22	28	37	41	
 4	15	23	29	38	41