用java猜价格代码 java猜数字代码( 二 )


{
if(e.getSource()==b1)
if(times5){
if(Integer.parseInt(text2.getText())1000||Integer.parseInt(text2.getText())9999)
text2.setText("输入数字不合法");
else
{ if(A==4)
text2.setText("猜对了");
times++;
compair();
text3.append("第");
text3.append(String.valueOf(times));
text3.append("猜的结果是:");
text3.append(String.valueOf(A));text3.append("A");
text3.append(String.valueOf(B));text3.append("B");
text3.append("\n");
}
}
else
{
text3.setText("超过5次,重新开始.\n");
times=0;
rand();
}
}
public static void main(String[] args)
{
new testframe("窗口程序");
}
}
class shut extends WindowAdapter
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
用JAVA语言写随即猜测商品价格!import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Random;
public class Sort {
public static void main(String args[]) {
Random rand = new Random();
String shop[][]={{"牙膏","7"},{"牙刷","6"},{"飞机","10"}};
int i=(int) (Math.random() * (shop.length));
int price=Integer.parseInt(shop[i][1]);
System.out.println("随即商品:"+shop[i][0]);
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
System.out.println("请竞猜商品价格:(限20次)");
int a=0;
int count=1;
for(int j=0;j20;j++)
{
count++;
try {
a= Integer.parseInt(br.readLine());
if(count=20){
if(a==price){
System.out.println("恭喜你?。〖鄹裾罚 。?);
break;
}
else{
System.out.println("很遗憾,价格错误");
}
}
else{
System.out.println("20次机会用完");
}
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
我的测试:
随即商品:飞机
请竞猜商品价格:(限20次)
1
很遗憾 , 价格错误
2
很遗憾,价格错误
3
很遗憾,价格错误
10
恭喜你?。〖鄹裾罚 。?
【用java猜价格代码 java猜数字代码】关于用java猜价格代码和java猜数字代码的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

推荐阅读