Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. package com.company;
  2. import java.util.Random;
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.  
  7. public static void main(String[] args) {
  8.  
  9. int life, money, bet;
  10. money = 100;
  11. Scanner scan = new Scanner(System.in);
  12. if (scan.nextLine() == "balance") {
  13. System.out.print("U have" + money);
  14. }
  15. if(scan.nextLine() == "play"){
  16. System.out.print("Write ur bet.");
  17. bet = scan.nextInt();
  18. double a = Math.random();
  19. if(a==1){
  20. money = money+bet;
  21. System.out.print("Вы выйграли. Ваш баланс: "+money);
  22. }
  23. if(a==0){
  24. money = money-bet;
  25. System.out.print("Вы проиграли. Ваш баланс: "+money);
  26. }
  27. }
  28.  
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement