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 灰狼算法和蚁群算法如何结合
- ¥15 这是一个利用ESP32自带按键和LED控制的录像代码,编译过程出现问题,请解决并且指出错误,指导如何处理 ,协助完成代码并上传代码
- ¥20 stm32f103,hal库 hal_usart_receive函数接收不到数据。
- ¥20 求结果和代码,sas利用OPTEX程序和D-efficiency生成正交集
- ¥50 求fpga交通信号灯设计Verilog代码
- ¥50 adb连接不到手机是怎么回事?
- ¥20 抓取数据时发生错误: get_mooncake_data() missing 1 required positional argument: 'driver'的问题,怎么改出正确的爬虫代码?
- ¥15 vs2022无法联网
- ¥15 TCP的客户端和服务器的互联
- ¥15 VB.NET操作免驱摄像头