Notes
![]() ![]() Notes - notes.io |
import java.lang.Math;
public class ColorGame {
public static void main(String[] args) {
String[] colors = {"Red", "Green", "Blue", "White", "Pink", "Yellow"};
Scanner scanner = new Scanner(System.in);
System.out.println("Welcome to Color Game!");
System.out.println("==================================================================");
System.out.println("Choose 3 Colors You Want (Red, Green, Blue, White, Pink, Yellow)");
String[] colorChoice = new String[3];
System.out.println("==================================================================");
for (int i = 0; i < 3; i++) {
System.out.print("Enter Color You Want " + (i + 1) + ": ");
colorChoice[i] = scanner.nextLine().trim();
}
int betAmount = 0;
while (true) {
System.out.print("Enter Your Bet (Maximum of 20): ");
betAmount = scanner.nextInt();
if (betAmount > 0 && betAmount <= 20) {
break;
} else {
System.out.println("Invalid Bet. Please Enter Between 1 and 20.");
}
}
int max = 6;
int min = 1;
int range = max - min + 1;
int[] randomIndices = new int[3];
for (int i = 0; i < 3; i++) {
randomIndices[i] = (int) (Math.random() * range) + min;
}
System.out.println("The Randomized Colors are:");
String[] randomColors = new String[3];
int[] colorOccurrences = new int[6];
for (int i = 0; i < 3; i++) {
switch (randomIndices[i]) {
case 1:
randomColors[i] = "Red";
System.out.println("This is red!");
colorOccurrences[0]++;
break;
case 2:
randomColors[i] = "Blue";
System.out.println("This is blue!");
colorOccurrences[1]++;
break;
case 3:
randomColors[i] = "Green";
System.out.println("This is green!");
colorOccurrences[2]++;
break;
case 4:
randomColors[i] = "Yellow";
System.out.println("This is yellow!");
colorOccurrences[3]++;
break;
case 5:
randomColors[i] = "White";
System.out.println("This is white!");
colorOccurrences[4]++;
break;
case 6:
randomColors[i] = "Pink";
System.out.println("This is pink!");
colorOccurrences[5]++;
break;
}
}
int matchCount = 0;
int winnings = 0;
boolean[] matchedRandomColors = new boolean[3];
for (String userColor : colorChoice) {
for (int i = 0; i < randomColors.length; i++) {
if (userColor.equalsIgnoreCase(randomColors[i]) && !matchedRandomColors[i]) {
matchCount++;
matchedRandomColors[i] = true;
int colorOccurrence = 0;
if (userColor.equalsIgnoreCase("Red")) {
colorOccurrence = colorOccurrences[0];
} else if (userColor.equalsIgnoreCase("Blue")) {
colorOccurrence = colorOccurrences[1];
} else if (userColor.equalsIgnoreCase("Green")) {
colorOccurrence = colorOccurrences[2];
} else if (userColor.equalsIgnoreCase("Yellow")) {
colorOccurrence = colorOccurrences[3];
} else if (userColor.equalsIgnoreCase("White")) {
colorOccurrence = colorOccurrences[4];
} else if (userColor.equalsIgnoreCase("Pink")) {
colorOccurrence = colorOccurrences[5];
}
winnings += betAmount * colorOccurrence;
break;
}
}
}
if (colorChoice[0].equalsIgnoreCase(colorChoice[1]) && colorChoice[1].equalsIgnoreCase(colorChoice[2])) {
winnings *= 3;
}
if (matchCount > 0) {
winnings += betAmount;
System.out.println("Congratulations, You matched " + matchCount + " color(s)! You won " + winnings + " pesos (including your bet)!");
} else {
System.out.println("No matches. You lost 20 pesos. Better luck next time!");
}
}
}
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team