代码拉取完成,页面将自动刷新
import java.util.Scanner;
public class GoodsMain {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
System.out.println("*******欢迎进入商品批发市场******");
String goods[]={"电风扇","洗衣机","电视机","冰箱","空调机"};
double prices[]={124.23,4500.0,8800.9,5000.88,4456.0};
System.out.println("编号"+"\t"+"商品"+"\t\t"+"价格");
for (int i = 0; i < 5; i++) {
System.out.println(i+"\t\t"+goods[i]+"\t\t"+prices[i]);
}
System.out.println("*********************************");
System.out.println("请输入您批发的商品编号:");
int choose01=sc.nextInt();
System.out.println("请输入批发数量:");
int choose02= sc.nextInt();
Double total=new Double(choose02*prices[choose01-1]);
StringBuffer strTotal=new StringBuffer(total.toString());
for (int i = strTotal.indexOf("."); i >0 ; i-=3) {
strTotal.insert(i,",");
}
strTotal.delete(strTotal.indexOf(".")-1,strTotal.indexOf("."));
System.out.println("您需要付款:"+strTotal);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。