A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;
class StoreList02 {
        public static void main(String[] args) {
               
                String macBrand = "MacBookAir";        //定义苹果品牌
                double macSize = 13.3;                        //苹果尺寸
                double macPrice = 6988.88;                //苹果价格
                String macConfig = "i5处理器4GB内存128G固态硬盘";//苹果配置
                int macCount = 5;                                                                //库存数

                String thinkBrand = "ThinkpadT450";        //定义Think品牌
                double thinkSize = 14.0;                        //Think尺寸
                double thinkPrice = 5999.99;                //Think价格
                String thinkConfig = "i5处理器4GB内存500G硬盘";//Think配置
                int thinkCount = 10;                                                   //库存数

                String asusBrand = "Asus_Fl580";        //定义华硕品牌
                double asusSize = 15.6;                        //华硕尺寸
                double asusPrice = 4999.5;                //华硕价格
                String asusConfig = "i7处理器4GB内存128G固态硬盘";//华硕配置
                int asusCount= 18;                                                   //库存数
                int totalcount = macCount+thinkCount+asusCount ;  //总数

                double totalmoney = (macPrice*macCount)+(thinkPrice*thinkCount)+(asusPrice*asusCount);//总价
                System.out.println("..................................电脑商城库存清单 .....................");
                System.out.println("品牌型号        尺寸           价格     配置                         库存数");
                System.out.println(macBrand+"        "+macSize+"            "+macPrice+"  "+macConfig+"  "+macCount);
                System.out.println(thinkBrand+"        "+thinkSize+"            "+thinkPrice+"  "+thinkConfig+"      "+thinkCount);
                System.out.println(asusBrand +"        "+asusSize+"            "+asusPrice+"   "+asusConfig+"  "+asusCount);
                System.out.println("..........................................................................");
                System.out.println("总库存数 :"+ asusCount);
                System.out.println("总金额数 :"+ totalmoney );
        }
}


2 个回复

倒序浏览
{:2_31:} 128G固态硬盘肯定不够用呀!!!
回复 使用道具 举报
gaoxiang933 发表于 2016-3-11 18:36
128G固态硬盘肯定不够用呀!!!

这不是重点
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马