Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class AddThreeNumbers_03_02 {
  4. public static void main(String[] args) {
  5. Scanner input = new Scanner(System.in);
  6.  
  7. ___________ ____________ = (int)(System.currentTimeMillis() % ___);
  8. __________ _____________ = (int)(System.currentTimeMillis() * 7 % ___);
  9. _________ ______________ = (int)(System.currentTimeMillis() * 3 % ____);
  10.  
  11. System.out.print("What is " + ______________ + " + " + ___________ + " + " +
  12. _____________ + "? ");
  13.  
  14. int answer = input.nextInt();
  15.  
  16. System.out.println(number1 + " + " + number2 + " + " + number3 +
  17. " = " + answer + " is " +
  18. (___________ + ____________ + ____________ == _______));
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement