Guest User

Untitled

a guest
May 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. package Lottery;
  2. /**
  3.  *
  4.  * @author Taly
  5.  */
  6. import java.util.Scanner;
  7.  
  8.     public class Lottery {
  9.  
  10.     public static void main(String[] args) {
  11.         Scanner input = new Scanner(System.in);
  12.         String lotteryNum = "", UserGuess = "";
  13.        
  14.         for (int i = 0; i < 3; ++i)
  15.        
  16.     lotteryNum = lotteryNum + (int)(Math.random() * 10);
  17.         System.out.println(lotteryNum);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment