java编程:幸运52游戏。要求用户对物品的价格进行估测
2个回答
展开全部
import javax.swing.JOptionPane;
public class Example{
static int right = (int)(Math.random()*100);
public static void main(String args[]){
in();
}
private static int in() {
int index = Integer.parseInt(JOptionPane.showInputDialog("请输入:"));
for(;;){
if(index<right){
JOptionPane.showMessageDialog(null, "小了");
index = Integer.parseInt(JOptionPane.showInputDialog("请重新输入:"));
}else{
if(index>right){
JOptionPane.showMessageDialog(null, "大了");
index = Integer.parseInt(JOptionPane.showInputDialog("请重新输入:"));
}else{
JOptionPane.showMessageDialog(null, "恭喜你答对了!!");
return 0;
}
}
}
}
}
这个只是简单实现,这个程序只有在你答对的情况下,才会退出,你看看符合你的要求不?
public class Example{
static int right = (int)(Math.random()*100);
public static void main(String args[]){
in();
}
private static int in() {
int index = Integer.parseInt(JOptionPane.showInputDialog("请输入:"));
for(;;){
if(index<right){
JOptionPane.showMessageDialog(null, "小了");
index = Integer.parseInt(JOptionPane.showInputDialog("请重新输入:"));
}else{
if(index>right){
JOptionPane.showMessageDialog(null, "大了");
index = Integer.parseInt(JOptionPane.showInputDialog("请重新输入:"));
}else{
JOptionPane.showMessageDialog(null, "恭喜你答对了!!");
return 0;
}
}
}
}
}
这个只是简单实现,这个程序只有在你答对的情况下,才会退出,你看看符合你的要求不?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询