一个简单的Java程序代码?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个简单的Java程序代码?相关的知识,希望对你有一定的参考价值。
某网吧计费如下:1小时 2元超出小时部分按0.01元\分钟输入分钟数 求费用?要代码 我已经做好了 想对下我的代码是否正确!
package com.zpp;public class Chargepublic static void main(String [] args)
if(args.length ==0)
System.out.println("parameter error!");
System.out.println("java com.zpp.Charge [int]");
return;
int min = Integer.parseInt(args[0]);
double money = 0.0;
if (min <= 0)
money =0.0;
System.out.println("not money");
else if (min <= 60)
money = 2.0;
else
money = 2.0 + (min - 60) * 0.01;
System.out.println("please pay: " + money);
编译:javac -d . Charge.java运行:java com.zpp.Charge 111 参考技术A public class aaaaa public int getqian(int time)
int rt=0;//钱 以分计算
if(time<60)//不到1小时
rt=200;//不到一个小时 按照一个小时算 怎么算自己定
else//超过一个小时计算过程
rt=200;//加上2元钱
time=time-60;//减去60分钟
while(time!=0)//如果还有时间未计算
rt=rt+1;//加上2元钱
time=time-1;//减去1分钟
return rt;
public static void main(String[] args)
aaaaa aa=new aaaaa();
System.out.println(aa.getqian(185)+":分");
参考技术B public double GetCost(int minutes)
//整数时间所花的费用
int aa = minutes / 60; //未满1小时处理
if (minutes < 60)
return 2;
//超出小时部分
int bb = minutes % 60; //其实你还有必要做一些其他处理。比如说超过30分钟了该怎么样算等等...... return aa * 2 + bb * 0.01d;
参考技术C import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader; public class a
public double test(int time)
double sum=0;
int i=0,k=0;
i=time%60; //得到的是超出一小时的分钟数
k=time/60; //得到的是小时数
if(time<60) //如果小于1小时,当一小时算
sum=2;
else if(time%60==0) //为整小时数时,对数据的处理
sum=k*2;
else //超出小时部分按0.01元\分钟
sum=k*2+i*0.01;
return sum;
public static void main(String [] args) throws IOException
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String s;
s = br.readLine(); //输入一个数,为String类型
int time=Integer.parseInt(s); //转换为int类型
a aa=new a(); //实例化a类
System.out.println("您的上网费用为:"+aa.test(time)+"元");//调用方法,并输出结果
参考技术D package demo;import java.util.*;
class Compare
int larger=0,smaller=0,num1,num2,num3;
public int larger(int x,int y,int z)
larger=x>y ? x:(y>z ? y: z);
return larger;
public int smaller(int x,int y,int z)
smaller=x<y ? x:(y<z ? y: z);
return smaller;
public static void main(String[] args)
Compare nm=new Compare();
Scanner n=new Scanner(System.in);
Scanner u=new Scanner(System.in);
Scanner m=new Scanner(System.in);
nm.num1=n.nextInt();
nm.num2=u.nextInt();
nm.num3=m.nextInt();
Compare lg=new Compare();
System.out.println("larger="+lg.larger(nm.num1,nm.num2,nm.num3));
Compare sl=new Compare();
System.out.println("smaller="+sl.smaller(nm.num1,nm.num2,nm.num3));
用java代码写一个简单的网上购物车程序
1 需求:1、写一个商品类,有商品编号、商品名称、商品分类、商品单价属性。2、写一个商品条目信息类,有商品和数量两个属性,有商品总价格方法。 2 3 3、写一个购物车类,有添加商品方法、查看订单信息,删除商品,修改商品,清空购物车,求购物车中所有商品总金额方法。4、写一个测试类,测试上述方法。 4 5 商品类: 6 [java] view plain copy 7 8 public class Product { 9 private int productId;// 商品编号 10 private String productName;// 商品名称 11 private String category;// 商品分类 12 private double price;// 单价 13 14 public Product() {// 无参构造 15 super(); 16 } 17 18 public Product(int productId, String productName, String category, 19 double price) { 20 super(); 21 this.productId = productId; 22 this.productName = productName; 23 this.category = category; 24 this.price = price; 25 } 26 27 public String toString() { 28 return "Product [productId=" + productId + ", productName=" 29 + productName + ", category=" + category + ", price=" + price 30 + "]"; 31 } 32 33 public int getProductId() { 34 return productId; 35 } 36 37 public void setProductId(int productId) { 38 this.productId = productId; 39 } 40 41 public String getProductName() { 42 return productName; 43 } 44 45 public void setProductName(String productName) { 46 this.productName = productName; 47 } 48 49 public String getCategory() { 50 return category; 51 } 52 53 public void setCategory(String category) { 54 this.category = category; 55 } 56 57 public double getPrice() { 58 return price; 59 } 60 61 public void setPrice(double price) { 62 this.price = price; 63 } 64 65 } 66 67 商品条目信息类: 68 [java] view plain copy 69 70 public class ProductItem { 71 private Product product;//购买的商品 72 private int count;//商品数量 73 public double totalMoney(){//小计 74 double price=product.getPrice();//获取商品单价 75 return price*count; 76 } 77 78 public ProductItem() { 79 super(); 80 } 81 82 public ProductItem(Product product, int count) { 83 super(); 84 this.product = product; 85 this.count = count; 86 } 87 88 public Product getProduct() { 89 return product; 90 } 91 public void setProduct(Product product) { 92 this.product = product; 93 } 94 public int getCount() { 95 return count; 96 } 97 public void setCount(int count) { 98 this.count = count; 99 } 100 101 } 102 103 104 购物车类: 105 [java] view plain copy 106 107 import java.util.Collection; 108 import java.util.Iterator; 109 import java.util.LinkedHashMap; 110 import java.util.Map; 111 public class ShoppingCart {//购物车 112 //key:商品编号 value:商品条目 113 private Map<Integer,ProductItem> map=new LinkedHashMap<Integer,ProductItem>(); 114 115 public void addProduct(Product p){//添加商品 116 int productId=p.getProductId(); 117 if(map.containsKey(productId)){ 118 ProductItem productItem=map.get(productId); 119 productItem.setCount(productItem.getCount()+1); 120 }else{ 121 map.put(productId, new ProductItem(p,1)); 122 } 123 } 124 public void showAll(){//查看订单信息 125 Collection<ProductItem> productItems = map.values(); 126 Iterator<ProductItem> iterator = productItems.iterator(); 127 while(iterator.hasNext()){ 128 ProductItem productItem = iterator.next(); 129 Product product = productItem.getProduct(); 130 System.out.println("商品编号:"+product.getProductId()+",商品名称:" 131 +product.getProductName()+",单价:"+product.getPrice()+",数量:"+productItem.getCount() 132 +",小计:"+productItem.totalMoney()); 133 } 134 } 135 public boolean deleteProduct(int productId){//删除商品 136 if(map.containsKey(productId)){ 137 map.remove(productId); 138 return true; 139 } 140 return false; 141 } 142 public boolean modifyProduct(int productId,int count){//修改 143 if(map.containsKey(productId)){ 144 if(count>=1){ 145 ProductItem productItem = map.get(productId); 146 productItem.setCount(count); 147 return true; 148 }else if(count==0){//删除该商品 149 deleteProduct(productId); 150 return true; 151 } 152 } 153 return false; 154 } 155 156 public void clearCart(){//清空购物车 157 map.clear(); 158 } 159 160 public double totalAllMoney(){//商品总钱数 161 double total=0; 162 Collection<ProductItem> productItems = map.values(); 163 Iterator<ProductItem> iterator = productItems.iterator(); 164 while(iterator.hasNext()){ 165 ProductItem productItem = iterator.next(); 166 double money=productItem.totalMoney(); 167 total+=money; 168 } 169 return total; 170 } 171 } 172 173 174 测试类: 175 [java] view plain copy 176 177 public class ShoppingCartTest { 178 179 public static void main(String[] args) { 180 ShoppingCart cart=new ShoppingCart(); 181 Product p1=new Product(101,"华硕笔记本","笔记本",4599); 182 Product p2=new Product(102,"苹果","水果",5.9); 183 Product p3=new Product(103,"彩电","家电",2799); 184 Product p4=new Product(104,"秋裤","服装",128); 185 Product p5=new Product(105,"华为手机","手机",2998); 186 Product p6=new Product(101,"华硕笔记本","笔记本",4599);//测试买两件商品的情况 187 cart.addProduct(p1); 188 cart.addProduct(p2); 189 cart.addProduct(p3); 190 cart.addProduct(p4); 191 cart.addProduct(p5); 192 cart.addProduct(p6); 193 cart.showAll(); 194 System.out.println("############"); 195 boolean flag=cart.deleteProduct(p2.getProductId()); 196 if(flag){ 197 System.out.println("商品编号为:"+p2.getProductId()+"的商品删除成功!"); 198 }else{ 199 System.out.println("删除失败"); 200 } 201 cart.showAll(); 202 System.out.println("############"); 203 boolean flag2=cart.modifyProduct(p3.getProductId(), 2); 204 if(flag2){ 205 System.out.println("商品编号为:"+p3.getProductId()+"的商品修改成功!"); 206 }else{ 207 System.out.println("修改失败"); 208 } 209 cart.showAll(); 210 211 //cart.clearCart(); 212 //cart.showAll(); 213 System.out.println("商品总价钱为:"+cart.totalAllMoney()); 214 215 } 216 217 }
以上是关于一个简单的Java程序代码?的主要内容,如果未能解决你的问题,请参考以下文章