?? shoppingcartapplication.java
字號:
/*
Author:wangping ID:200532580307
*/
import java.io.*;
import java.util.*;
import java.util.StringTokenizer;
/* DOCUMENT THIS CLASS */
public class ShoppingCartApplication {
private static BufferedReader stdIn =
new BufferedReader(new InputStreamReader(System.in));
private static PrintWriter stdOut =
new PrintWriter(System.out, true);
private static PrintWriter stdErr =
new PrintWriter(System.err, true);
private ShoppingCart cart;
/* DOCUMENT THIS PUBLIC METHOD */
public static void main(String[] args) throws IOException {
ShoppingCartApplication application = new ShoppingCartApplication();
application.run();
}
private void run() throws IOException {
cart = new ShoppingCart();
int choice = getChoice();
while (choice != 0) {
if (choice == 1) {
cart.addProduct(readProduct());
} else if (choice == 2) {
stdOut.println(cart.toString());
} else if (choice == 3) {
stdOut.println(cart.getTotalValue());
}
choice = getChoice();
}
}
private int getChoice() throws IOException {
do {
int input;
try {
stdErr.println();
stdErr.print("[0] Quit\n"
+ "[1] Add Product\n"
+ "[2] Display Products\n"
+ "[3] Display Total\n"
+ "choice>");
stdErr.flush();
input = Integer.parseInt(stdIn.readLine());
if (0 <= input && 3 >= input) {
return input;
} else {
stdErr.println("Invalid choice: " + input);
}
} catch (NumberFormatException nfe) {
stdErr.println(nfe);
}
} while (true);
}
private Product readProduct() throws IOException {
final String DELIM = "_";
String test="test";
String name = "";
int quantity = 0;
double price = 0.0;
/* PLACE YOUR CODE HERE */
stdOut.println("product [name_qty_price]");
StringTokenizer tokenizer =new StringTokenizer(stdIn.readLine(),DELIM);
if(tokenizer.countTokens()!=3){
stdErr.println("Invalid input");
}
else {
name=tokenizer.nextToken();
try{
quantity=Integer.parseInt(tokenizer.nextToken());
if(quantity<0){
stdErr.println("Invalid input");
}
}catch(NumberFormatException nfe){
stdErr.println(nfe);
}
try{
price=Double.parseDouble(tokenizer.nextToken());
if(price<0){
stdErr.println("Invalid input");
}
}catch(NumberFormatException e){
stdErr.println(e);
}
}
return new Product(name, quantity, price);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -