- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在制作一个彩票程序,它从用户处获取 3 个独立的整数输入,并将其与 3 个随机的一位数输入进行比较(我使用了 2 个数组,一个用于随机,另一个用于用户输入)。我已经设法检查输入的长度是否超过一位数字,但当我的程序收到字符串或字符输入时,我不知道如何进行检查。
第 31-42 行是检查用户输入的代码块
import javax.swing.*;
public class Lottery_Swing {
public static void main(String[] args) {
final int HIGHEST_VALUE = 10;
final int LOWEST_VALUE = 0;
final int LIMIT = 3;
int[] array1 = new int[LIMIT];
int[] array2 = new int[LIMIT];
int[] array3 = new int[LIMIT];
int randomValue;
int numberInput;
int numberMatched = 0;
boolean exactOrder = true;
//taking 3 random numbers and storing into array1//
for(int counter = 0; counter < LIMIT; counter++) {
randomValue = ((int)(Math.random() * 100) % HIGHEST_VALUE + LOWEST_VALUE);
array1[counter] = randomValue;
}
for(int counter = 0; counter < LIMIT; counter++) {
array3[counter] = array1[counter];
}
//Taking 3 numbers from user and storing into array2//
JOptionPane.showMessageDialog(null,"Enter 3 one-digit positive numbers for your 3 guesses");
for(int counter = 0; counter < LIMIT; counter++) {
String num1= JOptionPane.showInputDialog("Please input Guess #" + (counter+1));
numberInput = Integer.parseInt(num1);
if(numberInput < 0 || numberInput > 9) {
JOptionPane.showMessageDialog(null,"Please input a ONE-DIGIT POSITIVE Number for:");
JOptionPane.showMessageDialog(null,"Guess #" + (counter+1));
num1= JOptionPane.showInputDialog("Please input Guess #" + counter);
numberInput = Integer.parseInt(num1);
}
array2[counter] = numberInput;
}
//Checks for how many numbers matched//
for (int counter = 0; counter < LIMIT; counter++) {
for (int counter2 = 0; counter2 < LIMIT; counter2++) {
if(array2[counter] == array3[counter2]) {
numberMatched++;
array3[counter2] = 99;
break;
}
}
}
//If 3 numbers matched, it checks if it is in order//
if(numberMatched == 3) {
for (int counter = 0; counter < LIMIT; counter++) {
if(array2[counter] == array1[counter]) {
}
else {
exactOrder = false;
continue;
}
}
}
//Result Checking//
if(numberMatched == 3 && exactOrder == true) {
JOptionPane.showMessageDialog(null,"You won 1000000. All numbers match, and are in order.");
}
else {
if(numberMatched == 3) {
JOptionPane.showMessageDialog(null,"You won 1000. All Numbers match.");
}
else {
if(numberMatched == 2) {
JOptionPane.showMessageDialog(null,"You won 100. 2 Numbers match.");
}
else {
if(numberMatched == 1) {
JOptionPane.showMessageDialog(null,"You won 10. 1 Number matched.");
}
else {
JOptionPane.showMessageDialog(null,"No Matches");
}
}
}
}
//Result Display//
JOptionPane.showMessageDialog(null,"The winning numbers were:" + "\n" + array1[0] + " " + array1[1] + " " + array1[2] + "\n You entered:" + "\n" + array2[0] + " " + array2[1] + " " + array2[2] );
}
}
最佳答案
我建议以下基于递归 checkNum
方法的解决方案,该方法使用简单的正则表达式和值检查来完成所有验证:
import javax.swing.*;
public class Lottery_Swing {
public static void main(String[] args) {
final int HIGHEST_VALUE = 10;
final int LOWEST_VALUE = 0;
final int LIMIT = 3;
int[] array1 = new int[LIMIT];
int[] array2 = new int[LIMIT];
int[] array3 = new int[LIMIT];
int randomValue;
int numberInput;
int numberMatched = 0;
boolean exactOrder = true;
//taking 3 random numbers and storing into array1//
for (int counter = 0; counter < LIMIT; counter++) {
randomValue = ((int) (Math.random() * 100) % HIGHEST_VALUE + LOWEST_VALUE);
array1[counter] = randomValue;
}
for (int counter = 0; counter < LIMIT; counter++) {
array3[counter] = array1[counter];
}
//Taking 3 numbers from user and storing into array2//
JOptionPane.showMessageDialog(null, "Enter 3 one-digit positive numbers for your 3 guesses");
for (int counter = 0; counter < LIMIT; counter++) {
String num1 = JOptionPane.showInputDialog("Please input Guess #" + (counter + 1));
num1 = checkNum(num1, (counter + 1));
numberInput = Integer.parseInt(num1);
array2[counter] = numberInput;
}
//Checks for how many numbers matched//
for (int counter = 0; counter < LIMIT; counter++) {
for (int counter2 = 0; counter2 < LIMIT; counter2++) {
if (array2[counter] == array3[counter2]) {
numberMatched++;
array3[counter2] = 99;
break;
}
}
}
//If 3 numbers matched, it checks if it is in order//
if (numberMatched == 3) {
for (int counter = 0; counter < LIMIT; counter++) {
if (array2[counter] == array1[counter]) {
} else {
exactOrder = false;
continue;
}
}
}
//Result Checking//
if (numberMatched == 3 && exactOrder == true) {
JOptionPane.showMessageDialog(null, "You won 1000000. All numbers match, and are in order.");
} else {
if (numberMatched == 3) {
JOptionPane.showMessageDialog(null, "You won 1000. All Numbers match.");
} else {
if (numberMatched == 2) {
JOptionPane.showMessageDialog(null, "You won 100. 2 Numbers match.");
} else {
if (numberMatched == 1) {
JOptionPane.showMessageDialog(null, "You won 10. 1 Number matched.");
} else {
JOptionPane.showMessageDialog(null, "No Matches");
}
}
}
}
//Result Display//
JOptionPane.showMessageDialog(null, "The winning numbers were:" + "\n" + array1[0] + " " + array1[1] + " " + array1[2] + "\n You entered:" + "\n" + array2[0] + " " + array2[1] + " " + array2[2]);
}
public static String checkNum(String num1, int n) {
String res = num1;
if (!num1.matches("\\d+")) {
res = JOptionPane.showInputDialog("You entered an invalid integer. Please input a correct positive value for Guess #" + n);
res = checkNum(res, n);
}
int v = Integer.parseInt(res);
if (v < 0 || v > 9) {
res = JOptionPane.showInputDialog("Please input a ONE-DIGIT POSITIVE Number for Guess #" + n);
res = checkNum(res, n);
}
return res;
}
}
请注意,您使用 numberInput 进行的检查已替换为 checkNum 调用。
关于java - 当收到 NumberFormatException 时,如何阻止或重做 SWING 输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59478171/
我正在尝试使用谷歌浏览器的 Trace Event Profiling Tool分析我正在运行的 Node.js 应用程序。选择点样本后,我可以在三种 View 之间进行选择: 自上而下(树) 自上而
对于一个可能是菜鸟的问题,我们深表歉意,但尽管在 SO 上研究了大量教程和其他问题,但仍找不到答案。 我想做的很简单:显示一个包含大量数据库存储字符串的 Android ListView。我所说的“很
我已经开始了一个新元素的工作,并决定给 Foundation 5 一个 bash,看看它是什么样的。在创建带有水平字段的表单时,我在文档中注意到的第一件事是它们使用大量 div 来设置样式。所以我在下
我有一个 Windows 窗体用户控件,其中包含一个使用 BeginInvoke 委托(delegate)调用从单独线程更新的第 3 方图像显示控件。 在繁重的 CPU 负载下,UI 会锁定。当我附加
我有一堆严重依赖dom元素的JS代码。我目前使用的测试解决方案依赖于 Selenium ,但 AFAIK 无法正确评估 js 错误(addScript 错误不会导致您的测试失败,而 getEval 会
我正在制作一款基于滚动 2D map /图 block 的游戏。每个图 block (存储为图 block [21][11] - 每个 map 总共 231 个图 block )最多可以包含 21 个
考虑到以下情况,我是前端初学者: 某个 HTML 页面应该包含一个沉重的图像(例如 - 动画 gif),但我不想强制客户缓慢地等待它完全下载才能享受一个漂亮的页面,而是我更愿意给他看一个轻量级图像(例
我正在设计一个小软件,其中包括: 在互联网上获取资源, 一些用户交互(资源的快速编辑), 一些处理。 我想使用许多资源(它们都列在列表中)来这样做。每个都独立于其他。由于编辑部分很累,我想让用户(可能
我想比较两个理论场景。为了问题的目的,我简化了案例。但基本上它是您典型的生产者消费者场景。 (我关注的是消费者)。 我有一个很大的Queue dataQueue我必须将其传输给多个客户端。 那么让我们
我有一个二元分类问题,标签 0 和 1(少数)存在巨大不平衡。由于测试集带有标签 1 的行太少,因此我将训练测试设置为至少 70-30 或 60-40,因此仍然有重要的观察结果。由于我没有过多地衡量准
我是一名优秀的程序员,十分优秀!