在一个货架上面,有5件商品,编写程序,在输入商品价格之后输出最高价格、总价格和平均价格。
首先的话,要先创建一个包含有5个空元素的价格数组,之后,使用for循环使用户从控制台录入商品的价格,并将价格保存到数组当中,之后,再使用一个for循环来遍历这个数组,求出最高价格和总价格,最后使用总价格除以商品数量算出平均价格。
public static void main(String[] args) { // 声明数组 int[] prices = new int[5]; int maxPrice = 0, avgPrice = 0, sumPrice = 0; Scanner input = new Scanner(System.in); System.out.println("请输入5件商品的价格:"); for (int i = 0; i < 5; i++) { prices[i] = input.nextInt(); // 循环向数组中元素赋值 } // 计算价格最大值 maxPrice = prices[0]; // 假设最大值为第一个元素 for (int index = 1; index < prices.length; index++) { sumPrice += prices[index]; // 汇总价格 if (prices[index] > maxPrice) { maxPrice = prices[index]; } } // 平均价格=总价格/商品数量 avgPrice = sumPrice / prices.length; System.out.println("本货架上商品的总价格为:" + sumPrice + " 平均价格为:" + avgPrice + " 最高价格为:" + maxPrice); }
运行结果:
请输入5件商品的价格: 88 64 44 62 79 本货架上商品的总价格为:249 平均价格为:49 最高价格为:88
更多相关java实例,请多多的来奇Q工具网进行了解吧。
推荐阅读: