本文主要是介绍关于java的超市算总价和打印发票代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、遍历数组
利用数组遍历出他的各项数据
二、代码
代码如下:
Scanner scanner = new Scanner(System.in);System.out.println("您购买了多少商品");int x=scanner.nextInt();String[] goods=new String[x];int[] cost=new int[x];int sum=0;for(int i=0;i<goods.length;i++){System.out.println("商品");goods[i] = scanner.next();System.out.println("价格");cost[i] = scanner.nextInt();}for(int i=0;i<goods.length;i++){System.out.println("商品:"+goods[i]+"\t价格:"+cost[i]);sum+=cost[i];}System.out.println("总价:"+sum);
实例图片。
总结
今天介绍了如何使用数组遍历来输出需要输出的各项数值。这篇关于关于java的超市算总价和打印发票代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!