2条回答 默认 最新
- 偷窃月亮的贼 2021-09-12 13:43关注
记得把
Demo
改为你的类名:import java.util.Scanner; enum Goods { TOOTHBRUSH("牙刷", 1, 8.8), TOWEL("毛巾", 2, 10.0), WATER_CUP("水杯", 3, 18.8), APPLE("苹果", 4, 12.5), BANANA("香蕉", 5, 15.5); private final String goodName; private final int index; private final double price; Goods(String goodName, int index, double price) { this.goodName = goodName; this.index = index; this.price = price; } public static double getPrice(int index) { for (Goods good : Goods.values()) { if (good.index == index) { return good.price; } } return 0; } } public class Demo { public static void main(String[] args) { double money = 0; Scanner scanner = new Scanner(System.in); while (true) { System.out.println("是否继续?输入”Y“继续购物,输入”N“退出:"); if ("Y".equals(scanner.next())) { double singlePrice; System.out.print("请输入商品编号:"); singlePrice = Goods.getPrice(scanner.nextInt()); System.out.print("请输入购买数量:"); money += singlePrice * scanner.nextInt(); continue; } break; } System.out.println("总共消费:" + money); } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决评论 打赏 举报无用 2
悬赏问题
- ¥15 vivo手机锁屏密码忘记了需要手机里的资料在百度里搜可以用ADB命令希望帮帮我
- ¥15 关于#网络#的问题:网络是从楼上引一根网线下来,接了2台傻瓜交换机,也更换了ip还是不行
- ¥15 资源泄露软件闪退怎么解决?
- ¥15 CCF-CSP 2023 第三题 解压缩(50%)
- ¥30 comfyui openpose报错
- ¥20 Wpf Datarid单元格闪烁效果的实现
- ¥15 图像分割、图像边缘提取
- ¥15 sqlserver执行存储过程报错
- ¥100 nuxt、uniapp、ruoyi-vue 相关发布问题
- ¥15 浮窗和全屏应用同时存在,全屏应用输入法无法弹出