Can someone help program this for me?

Can someone help me with another java program please?

  • Can someone please help me? I'm completely lost...and don't know what to do: Assignment A slot machine is a gambling device that the user inserts money into and then pulls a lever (or presses a button). The slot machine then displays a set of random images. If two or more of the images match, the user wins an amount of money that the slot machine dispenses back to the user. Create a program that simulates a slot machine. When the program runs, it should do the following: Asks the user to enter the amount of money he or she wants to enter into the slot machine as a bet. Instead of displaying images, the program will randomly select a word from the following list: Cherries, Oranges, Plums, Bells, Melons, Bars Use an array to store this list of images To select a word, the program will generate a random number in the range of 0 through 5. If the number is 0 the selected word is cherries: if the numbers is 1, the selected word is Oranges; and so forth. The program should randomly select a word from this list three times and display all three of the words. If two of the randomly selected words match, the program will inform the user that he or she has won two times the amount entered. If three of the words match, the program will inform the user that he or she has won three times the amount entered. The program will ask whether the user wants to play again. If so, these steps are repeated. If not, the program displays the total amount of money entered into the slot machine and the total amount won. Make sure you use an array for the slot machines symbols.

  • Answer:

    import java.util.*; public class xxx { public static void main(String []a) { Scanner S=new Scanner(System.in); Random r=new Random(); String []fruits=new String[5]; fruits[0]="Orange"; //fill up others while(true) { System.out.println("Enter a number"); int N=S.nextInt(); int i=Math.abs(r.nextInt())%5; int j=Math.abs(r.nextInt())%5; int k=Math.abs(r.nextInt())%5; System.out.println(Fruits[i]+Frutis[j]… if( i==j && i==k) System.out.println("You won="+ (3*N)); else if ( i==j || i==k || j==k) System.out.println("You won="+(2*N) ); System.out.println("Enter 1 to continue 0 to exit"); N=S.nextInt(); if(N!=1) break; } } }

Chelsea Hairanian at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.