1 Star 0 Fork 0

JAVA59_柴化健/Java高级特性作业3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
GoodsMain.java 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
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);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/chaihuajian777/java_advanced_feature_job_3.git
git@gitee.com:chaihuajian777/java_advanced_feature_job_3.git
chaihuajian777
java_advanced_feature_job_3
Java高级特性作业3
master

搜索帮助