Notes![what is notes.io? What is notes.io?](/theme/images/whatisnotesio.png)
![]() ![]() Notes - notes.io |
import java.lang.Math;
public class Main {
public static void main(String[] args) {
String[] color = {"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 Color 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.print("Invalid Bet. Please Enter Between 1 and 20");
return;
}
}
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];
for (int i = 0; i < 3; i++) {
switch (randomIndices[i]) {
case 1:
randomColors[i] = "Red";
System.out.println("This is red!");
break;
case 2:
randomColors[i] = "Blue";
System.out.println("This is blue!");
break;
case 3:
randomColors[i] = "Green";
System.out.println("This is green!");
break;
case 4:
randomColors[i] = "Yellow";
System.out.println("This is yellow!");
break;
case 5:
randomColors[i] = "White";
System.out.println("This is white!");
break;
case 6:
randomColors[i] = "Pink";
System.out.println("This is pink!");
break;
default:
randomColors[i] = "NOTA";
}
}
int matchCount = 0;
for (String userColor : colorChoice) {
for (String randomColor : randomColors) {
if (userColor.equalsIgnoreCase(randomColor)) {
matchCount++;
break;
}
}
}
if (matchCount > 0) {
int winnings = betAmount * matchCount * 2; // Multiply by matchCount and then by 2
System.out.println("Congratulations, You matched " + matchCount + " color(s)! You won " + winnings + " pesos!");
} else {
System.out.println("No matches. 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