商品竞猜活动

网友投稿 609 2022-10-29

商品竞猜活动

商品竞猜活动

import java.util.Random;import java.util.Scanner;public class Test03 { public static void main(String[] args) { int price = 0;//竞猜物品的价格 Random random = new Random(); price = 2000 + random.nextInt(8001);//生成随机价格 System.out.println(price); int userPrice = 0;//用户输入的价格 for (int i = 1; i <= 5; i++) { @SuppressWarnings("resource") Scanner scanner = new Scanner(System.in); System.out.println("请输入您要竞猜的价格2000-10000"); userPrice = scanner.nextInt(); if(userPrice > 10000 || userPrice < 2000) { System.out.println("您输入的价格不在范围类!"); }else if (userPrice == price) { System.out.println("恭喜您中奖了!"); break; }else { if (i == 5) { System.out.println("您5次均未猜中,游戏结束!"); }else { System.out.println("您未猜对!"); } } } }}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:自定义持久层框架MyORMFramework(一)—JDBC分析和解决思路
下一篇:silly 是一个基于lua的轻量级服务器框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~