一.前言
1.第四次题目集的知识点涉及Time类以及前面学的各种知识点;题量很少只有一题;难度比较大。
2.第五次题目集的知识点主要是Time类、异常处理等等;题量很少只有一题;难度比较大。
3.期中考试的知识点涉及类、继承与多态、接口等等;题量不多,一共4题;整体难度不高。
二.设计与分析
7-1 菜单计价程序-4 分数 100 作者 蔡轲 单位 南昌航空大学本体大部分内容与菜单计价程序-3相同,增加的部分用加粗文字进行了标注。
设计点菜计价程序,根据输入的信息,计算并输出总价格。
输入内容按先后顺序包括两部分:菜单、订单,最后以"end"结束。
菜单由一条或多条菜品记录组成,每条记录一行
每条菜品记录包含:菜名、基础价格 两个信息。
订单分:桌号标识、点菜记录和删除信息、代点菜信息。每一类信息都可包含一条或多条记录,每条记录一行或多行。
桌号标识独占一行,包含两个信息:桌号、时间。
桌号以下的所有记录都是本桌的记录,直至下一个桌号标识。
点菜记录包含:序号、菜名、份额、份数。份额可选项包括:1、2、3,分别代表小、中、大份。
不同份额菜价的计算方法:小份菜的价格=菜品的基础价格。中份菜的价格=菜品的基础价格1.5。小份菜的价格=菜品的基础价格2。如果计算出现小数,按四舍五入的规则进行处理。
删除记录格式:序号 delete
标识删除对应序号的那条点菜记录。
如果序号不对,输出"delete error"
代点菜信息包含:桌号 序号 菜品名称 份额 分数
代点菜是当前桌为另外一桌点菜,信息中的桌号是另一桌的桌号,带点菜的价格计算在当前这一桌。
程序最后按输入的桌号从小到大的顺序依次输出每一桌的总价(注意:由于有代点菜的功能,总价不一定等于当前桌上的菜的价格之和)。
每桌的总价等于那一桌所有菜的价格之和乘以折扣。如存在小数,按四舍五入规则计算,保留整数。
折扣的计算方法(注:以下时间段均按闭区间计算):
周一至周五营业时间与折扣:晚上(17:00-20:30)8折,周一至周五中午(10:30--14:30)6折,其余时间不营业。
周末全价,营业时间:9:30-21:30
如果下单时间不在营业范围内,输出"table " + t.tableNum + " out of opening hours"
参考以下类的模板进行设计(本内容与计价程序之前相同,其他类根据需要自行定义):
菜品类:对应菜谱上一道菜的信息。
Dish {
String name;//菜品名称
int unit_price; //单价
int getPrice(int portion)//计算菜品价格的方法,输入参数是点菜的份额(输入数据只能是1/2/3,代表小/中/大份) }
菜谱类:对应菜谱,包含饭店提供的所有菜的信息。
Menu {
Dish[] dishs ;//菜品数组,保存所有菜品信息
Dish searthDish(String dishName)//根据菜名在菜谱中查找菜品信息,返回Dish对象。
Dish addDish(String dishName,int unit_price)//添加一道菜品信息
}
点菜记录类:保存订单上的一道菜品记录
Record {
int orderNum;//序号
Dish d;//菜品\\
int portion;//份额(1/2/3代表小/中/大份)
int getPrice()//计价,计算本条记录的价格
}
订单类:保存用户点的所有菜的信息。
Order {
Record[] records;//保存订单上每一道的记录
int getTotalPrice()//计算订单的总价
Record addARecord(int orderNum,String dishName,int portion,int num)//添加一条菜品信息到订单中。
delARecordByOrderNum(int orderNum)//根据序号删除一条记录
findRecordByNum(int orderNum)//根据序号查找一条记录
}
本次课题比菜单计价系列-3增加的异常情况:
1、菜谱信息与订单信息混合,应忽略夹在订单信息中的菜谱信息。输出:"invalid dish"
2、桌号所带时间格式合法(格式见输入格式部分说明,其中年必须是4位数字,月、日、时、分、秒可以是1位或2位数),数据非法,比如:2023/15/16 ,输出桌号+" date error"
3、同一桌菜名、份额相同的点菜记录要合并成一条进行计算,否则可能会出现四舍五入的误差。
4、重复删除,重复的删除记录输出"deduplication :"+序号。
5、代点菜时,桌号不存在,输出"Table number :"+被点菜桌号+" does not exist";本次作业不考虑两桌记录时间不匹配的情况。
6、菜谱信息中出现重复的菜品名,以最后一条记录为准。
7、如果有重复的桌号信息,如果两条信息的时间不在同一时间段,(时段的认定:周一到周五的中午或晚上是同一时段,或者周末时间间隔1小时(不含一小时整,精确到秒)以内算统一时段),此时输出结果按不同的记录分别计价。
8、重复的桌号信息如果两条信息的时间在同一时间段,此时输出结果时合并点菜记录统一计价。前提:两个的桌号信息的时间都在有效时间段以内。计算每一桌总价要先合并符合本条件的饭桌的点菜记录,统一计价输出。
9、份额超出范围(1、2、3)输出:序号+" portion out of range "+份额,份额不能超过1位,否则为非法格式,参照第13条输出。
10、份数超出范围,每桌不超过15份,超出范围输出:序号+" num out of range "+份数。份数必须为数值,最高位不能为0,否则按非法格式参照第16条输出。
11、桌号超出范围[1,55]。输出:桌号 +" table num out of range",桌号必须为1位或多位数值,最高位不能为0,否则按非法格式参照第16条输出。
12、菜谱信息中菜价超出范围(区间(0,300)),输出:菜品名+" price out of range "+价格,菜价必须为数值,最高位不能为0,否则按非法格式参照第16条输出。
13、时间输入有效但超出范围[2022.1.1-2023.12.31],输出:"not a valid time period"
14、一条点菜记录中若格式正确,但数据出现问题,如:菜名不存在、份额超出范围、份数超出范围,按记录中从左到右的次序优先级由高到低,输出时只提示优先级最高的那个错误。
15、每桌的点菜记录的序号必须按从小到大的顺序排列(可以不连续,也可以不从1开始),未按序排列序号的输出:"record serial number sequence error"。当前记录忽略。(代点菜信息的序号除外)
16、所有记录其它非法格式输入,统一输出"wrong format"
17、如果记录以“table”开头,对应记录的格式或者数据不符合桌号的要求,那一桌下面定义的所有信息无论正确或错误均忽略,不做处理。如果记录不是以“table”开头,比如“tab le 55 2023/3/2 12/00/00”,该条记录认为是错误记录,后面所有的信息并入上一桌一起计算。
本次作业比菜单计价系列-3增加的功能:
菜单输入时增加特色菜,特色菜的输入格式:菜品名+英文空格+基础价格+"T"
例如:麻婆豆腐 9 T
菜价的计算方法:
周一至周五 7折, 周末全价。
注意:不同的四舍五入顺序可能会造成误差,请按以下步骤累计一桌菜的菜价:
计算每条记录的菜价:将每份菜的单价按份额进行四舍五入运算后,乘以份数计算多份的价格,然后乘以折扣,再进行四舍五入,得到本条记录的最终支付价格。
最后将所有记录的菜价累加得到整桌菜的价格。
输入格式:
桌号标识格式:table + 序号 +英文空格+ 日期(格式:YYYY/MM/DD)+英文空格+ 时间(24小时制格式: HH/MM/SS)
菜品记录格式:
菜名+英文空格+基础价格
如果有多条相同的菜名的记录,菜品的基础价格以最后一条记录为准。
点菜记录格式:序号+英文空格+菜名+英文空格+份额+英文空格+份数注:份额可输入(1/2/3), 1代表小份,2代表中份,3代表大份。
删除记录格式:序号 +英文空格+delete
代点菜信息包含:桌号+英文空格+序号+英文空格+菜品名称+英文空格+份额+英文空格+分数
最后一条记录以“end”结束。
输出格式:
按输入顺序输出每一桌的订单记录处理信息,包括:
1、桌号,格式:table+英文空格+桌号+”:”+英文空格
2、按顺序输出当前这一桌每条订单记录的处理信息,
每条点菜记录输出:序号+英文空格+菜名+英文空格+价格。其中的价格等于对应记录的菜品*份数,序号是之前输入的订单记录的序号。如果订单中包含不能识别的菜名,则输出“** does not exist”,**是不能识别的菜名
如果删除记录的序号不存在,则输出“delete error”
最后按输入顺序一次输出每一桌所有菜品的总价(整数数值)格式:table+英文空格+桌号+“:”+英文空格+当前桌的原始总价+英文空格+当前桌的计算折扣后总价
输入样例:
在这里给出一组输入。例如:
麻婆豆腐 12
油淋生菜 9 T
table 31 2023/2/1 14/20/00
1 麻婆豆腐 1 16
2 油淋生菜 1 2
2 delete
2 delete
end
输出样例:
在这里给出相应的输出。例如:
table 31:
1 num out of range 16
2 油淋生菜 18
deduplication 2
table 31: 0 0
输入样例1:
份数超出范围+份额超出范围。例如:
麻婆豆腐 12
油淋生菜 9 T
table 31 2023/2/1 14/20/00
1 麻婆豆腐 1 16
2 油淋生菜 4 2
end
输出样例1:
份数超出范围+份额超出范围。例如:
table 31:
1 num out of range 16
2 portion out of range 4
table 31: 0 0
输入样例2:
桌号信息错误。例如:
麻婆豆腐 12
油淋生菜 9 T
table a 2023/3/15 12/00/00
1 麻婆豆腐 1 1
2 油淋生菜 2 1
end
输出样例2:
在这里给出相应的输出。例如:
wrong format
输入样例3:
混合错误:桌号信息格式错误+混合的菜谱信息(菜谱信息忽略)。例如:
麻婆豆腐 12
油淋生菜 9 T
table 55 2023/3/31 12/000/00
麻辣香锅 15
1 麻婆豆腐 1 1
2 油淋生菜 2 1
end
输出样例3:
在这里给出相应的输出。例如:
wrong format
输入样例4:
错误的菜谱记录。例如:
麻婆豆腐 12.0
油淋生菜 9 T
table 55 2023/3/31 12/00/00
麻辣香锅 15
1 麻婆豆腐 1 1
2 油淋生菜 2 1
end
输出样例4:
在这里给出相应的输出。例如:
wrong format
table 55:
invalid dish
麻婆豆腐 does not exist
2 油淋生菜 14
table 55: 14 10
输入样例5:
桌号格式错误(以“table”开头)+订单格式错误(忽略)。例如:
麻婆豆腐 12
油淋生菜 9 T
table a 2023/3/15 12/00/00
1 麻婆 豆腐 1 1
2 油淋生菜 2 1
end
输出样例5:
在这里给出相应的输出。例如:
wrong format
输入样例6:
桌号格式错误,不以“table”开头。例如:
麻婆豆腐 12
油淋生菜 9 T
table 1 2023/3/15 12/00/00
1 麻婆豆腐 1 1
2 油淋生菜 2 1
tab le 2 2023/3/15 12/00/00
1 麻婆豆腐 1 1
2 油淋生菜 2 1
end
输出样例6:
在这里给出相应的输出。例如:
table 1:
1 麻婆豆腐 12
2 油淋生菜 14
wrong format
record serial number sequence error
record serial number sequence error
table 1: 26 17
其他用例请参考公开的测试用例
代码长度限制 50 KB 时间限制 1000 ms 内存限制 64 MB 源码:import java.sql.SQLOutput;
import java.time.LocalDateTime;
import java.util.*;
public class Main {
static int cnt1 = 0;
static int cnt2 = -1;
static int cnt3 = 0;
public static void main(String args[]) {
int[] mon_maxnum = new int[]{0,31,28,31,30,31,30,31,31,30,31,30,31};
Scanner s = new Scanner(System.in);
Menu menu = new Menu();
Table[] tables = new Table[10];
for (int i=0;i<10;i++) {
tables[i] = new Table();
}
String input = s.nextLine();
while (!input.equals("end")) {
String[] a = input.split(" ");//以空格为分隔符分离输入的字符串
if (input.matches("[\\u4e00-\\u9fa5]+ \\d+(\\.\\d+)?( T)?") ) { //输入的是菜谱信息
if (!a[1].matches("^[1-9]|[1-9]\\d*$")) {//菜价
System.out.println("wrong format");
} else if (Integer.parseInt(a[1]) > 300 || Integer.parseInt(a[1]) < 0) {
System.out.println(a[0] + " price out of range " + a[1]);
} else{
menu.dishes[cnt1] = menu.addDish(a[0], Integer.parseInt(a[1]));//类型不匹配,使用Integer包装
cnt1++;
}
} else if (a.length == 3 && input.matches("[\\u4e00-\\u9fa5]+ \\d+(\\.\\d+)?( T)?")) {//特价菜
if (!a[1].matches("^[1-9]|[1-9]\\d*$")) {
System.out.println("wrong format");
} else if (Integer.parseInt(a[1]) > 300 || Integer.parseInt(a[1]) < 0) {
System.out.println(a[0] + " price out of range " + a[1]);
} else{
menu.dishes[cnt1] = menu.addDish(a[0], Integer.parseInt(a[1]));//类型不匹配,使用Integer包装
menu.dishes[cnt1].T = 1;
cnt1++;
}
} else if (a.length == 4 && a[0].equals("table")) {//桌与时间
String[] da = a[2].split("/");//年月日
String[] ti = a[3].split("/");//具体时间
if (!a[1].matches("^[1-9]|[1-9]\\d*$")) {
System.out.println("wrong format");
} else if (Integer.parseInt(a[1]) > 55) {
System.out.println(a[1] + " table num out of range");
}
else if (!a[2].matches("\\d{4,}/\\d{1,2}/\\d{1,2}") || !a[3].matches("\\d{1,2}/\\d{1,2}/\\d{1,2}")) {
System.out.println("wrong format");
} else if (Integer.parseInt(da[0]) < 2022 || Integer.parseInt(da[0]) > 2023 ) {
System.out.println("not a valid time period");
} else if (Integer.parseInt(da[1]) < 1 || Integer.parseInt(da[1]) > 12) {
System.out.println(a[1] + " date error");
} else if (Integer.parseInt(da[2]) < 1 || Integer.parseInt(da[2]) > mon_maxnum[Integer.parseInt(da[1])]) {
System.out.println(a[1] + " date error");
} else if (Integer.parseInt(ti[0]) > 23 || Integer.parseInt(ti[0]) < 0) {
System.out.println(a[1] + " date error");
} else if (Integer.parseInt(ti[1]) > 59 || Integer.parseInt(ti[1]) < 0) {
System.out.println(a[1] + " date error");
} else if (Integer.parseInt(ti[2]) > 59 || Integer.parseInt(ti[2]) < 0) {
System.out.println(a[1] + " date error");
} else {
cnt2++;
tables[cnt2] = new Table();
tables[cnt2].time = new Time();
tables[cnt2].tableNum = Integer.parseInt(a[1]);
tables[cnt2].time.date = a[2];//年月日
tables[cnt2].time.times = a[3];//具体时间
System.out.println("table " + a[1] + ": ");
}
} else if (input.matches("\\d+ [\\u4e00-\\u9fa5a-zA-Z]+ \\d+ \\d+")) {//点菜
if (cnt2 > -1) {
if (!tables[cnt2].order.checkOrdernum(Integer.parseInt(a[0]))) {
System.out.println("record serial number sequence error");
} else if (menu.searchDish(a[1]) == null) {
System.out.println(a[1] + " does not exist");
} else {
Dish dish = new Dish();
dish = menu.searchDish(a[1]);
if (dish.T == 1) {//特价菜份额份数判断
if (!a[3].matches("^[1-9]|[1-9]\\d*$")) {
System.out.println("wrong format");
} else if (Integer.parseInt(a[2]) > 9) {
System.out.println("wrong format");
} else if (Integer.parseInt(a[2]) != 1 && Integer.parseInt(a[2]) != 3) {
System.out.println(a[0] + " portion out of range " + a[2]);
} else if (Integer.parseInt(a[3]) > 15) {
System.out.println(a[0] + " num out of range " + a[3]);
} else {
Record record = new Record();
record.orderNum = Integer.parseInt(a[0]);
record.portion = Integer.parseInt(a[2]);
record.num = Integer.parseInt(a[3]);
record.d = menu.searchDish(a[1]);
tables[cnt2].order.records[cnt3] = record;
cnt3++;
System.out.println(record.orderNum + " " + record.d.name + " " + record.getPriceA());
}
} else {//非特价菜份额份数判断
if (!a[3].matches("^[1-9]|[1-9]\\d*$")) {
System.out.println("wrong format");
} else if (Integer.parseInt(a[2]) > 9) {
System.out.println("wrong format");
} else if (Integer.parseInt(a[2]) > 3) {
System.out.println(a[0] + " portion out of range " + a[2]);
} else if (Integer.parseInt(a[3]) > 15) {
System.out.println(a[0] + " num out of range " + a[3]);
} else {
Record record = new Record();
record.orderNum = Integer.parseInt(a[0]);
record.portion = Integer.parseInt(a[2]);
record.num = Integer.parseInt(a[3]);
record.d = menu.searchDish(a[1]);
tables[cnt2].order.records[cnt3] = record;
cnt3++;
System.out.println(record.orderNum + " " + record.d.name + " " + record.getPriceA());
}
}
}
}
}else if (a.length == 2 && a[1].equals("delete")) {
for (int i = 0;i <= cnt2;i++) {
tables[i].order.delARecordByOrderNum(Integer.parseInt(a[0]));
}
} else{
System.out.println("wrong format");
}
input = s.nextLine();
}
for (int i=0;i <= Main.cnt2;i++) {
tables[i].getPrice();
}
}
}
class Dish {
String name;
int unit_price;
int T = 0;
public int getPrice(int portion) {
int p = 0;
if (portion == 1) {
p = unit_price;
} else if (portion == 2) {
p = (int)(Math.round(unit_price*1.5));
} else if (portion == 3) {
p = unit_price * 2;
}
return p;
}
}
class Menu {
Dish[] dishes;
public Menu() {
this.dishes = new Dish[100];
}
public Dish searchDish(String dishName) {
for (int i = 0; i < Main.cnt1; i++) {
if (dishName.equals(dishes[i].name)) {
return dishes[i];
}
}
return null;
}//根据菜名在菜谱中查找菜品信息,返回Dish对象。
public Dish addDish(String dishName,int unit_price) {
Dish dish = new Dish();
dish.name = dishName;
dish.unit_price = unit_price;
return dish;
}//添加一道菜品信息
}
class Record {
Dish d;
int orderNum;
int flag = 1;//判断是否删除
int portion;
int num;
public Record (){
d = new Dish();
}
public int getPrice() {
return d.getPrice(portion) * num * flag;
}
public int getPriceA() {
return d.getPrice(portion) * num;
}
}
class Order {
Record[] records;
public Order() {
this.records = new Record[100];
for (int i = 0; i < 100; i++) {
records[i] = new Record();
}
}
public int getTotalPrice() {//计算订单的总价
int totalprice = 0;
for (int i=0;i < Main.cnt3;i++) {
totalprice += records[i].getPrice();
}
return totalprice;
}
public Record addARecord(int orderNum,String dishName,int portion,int num) {//添加一条菜品信息到订单中
Record record = new Record();
record.orderNum = orderNum;
record.d.name = dishName;
record.portion = portion;
record.num = num;
return record;
}
public void delARecordByOrderNum(int orderNum) {
int i;
i = findRecordByNum(orderNum);
if (i == -1) {
System.out.println("delete error");
} else {
if (records[i].flag == 1) {
records[i].flag = 0;
} else{
System.out.println("deduplication " + orderNum);
}
}
}
public int findRecordByNum(int orderNum) {
int i;
for (i=0;i < Main.cnt3;i++) {
if (records[i].orderNum == orderNum) {
return i;
}
}
return -1;
}
Boolean checkOrdernum(int j) {
for (int i=0;i< Main.cnt3;i++) {
if (j <= records[i].orderNum) {
return false;
}
}
return true;
}
}
class Time {
String date;
String times;
int weekday;
int year;
int month;
int day;
int hour;
int minutes;
public void getDate() {
String[] da = date.split("/");
String[] ti = times.split("/");
this.year = Integer.parseInt(da[0]);
this.month = Integer.parseInt(da[1]);
this.day = Integer.parseInt(da[2]);
this.hour = Integer.parseInt(ti[0]);
this.minutes = Integer.parseInt(ti[1]);
LocalDateTime d = LocalDateTime.of(year,month,day,hour,minutes);
this.weekday = d.getDayOfWeek().getValue();//getValue得到值,否则DayOfWeek类型不能直接用
}
}
class Table {
Time time;
Order order;
int tableNum;
int tablePrice;
public Table() {
time = new Time();
order = new Order();
}
public void getPrice() {
int sum1 = 0;//特价菜
int sum2 = 0;//非特价菜
time.getDate();
if (time.weekday >= 1 && time.weekday <= 5) {//周一到周五
for (int i=0;i <= Main.cnt3;i++) {
if (order.records[i].d.T == 1) {//是特价菜
sum1 += (int)(Math.round(order.records[i].getPrice()*0.7));
} else if (order.records[i].d.T == 0) {//不是特价菜
sum2 += order.records[i].getPrice();
}
}
if ((time.hour >= 10 && time.minutes >= 30 && time.hour < 14) || (time.hour <= 14 && time.minutes <= 30 && time.hour > 10)) {//中午
tablePrice = (int)(Math.round(sum2 * 0.6)) + sum1;
System.out.println("table " + tableNum + ": " + order.getTotalPrice() + " " + tablePrice);
} else if ((time.hour >= 17 && time.hour < 20) || time.hour == 20 && time.minutes <= 30) {//晚上
tablePrice = (int)(Math.round(sum2 * 0.8)) + sum1;
System.out.println("table " + tableNum + ": " + order.getTotalPrice() + " " + tablePrice);
} else{ //非营业时间
System.out.println("table " + tableNum + " out of opening hours");
}
} else if (time.weekday == 6 || time.weekday == 7) {//周末
if ((time.hour >= 9 && time.minutes >= 30 && time.hour < 21) || (time.hour <= 21 && time.minutes <=30 && time.hour > 9)) {
tablePrice = order.getTotalPrice();
System.out.println("table " + tableNum + ": " + order.getTotalPrice() + " " + tablePrice);
} else{ //非营业时间
System.out.println("table " + tableNum + " out of opening hours");
}
}
}
}
源码类图:
源码分析:
1.对于每个桌号,需要建立一个存储其订单信息的数据结构,比如一个字典,将订单信息存储在其中,方便后续对数据的处理和计算。需要注意,不同桌号的订单信息需要分别存储,避免混淆。
2.包括菜品单价的计算、折扣的计算、口味度的计算等。计算时需要注意数据类型的转换和取舍,并进行四舍五入等计算。另外,需要注意口味度的范围限制,对于超出范围的情况,需要进行相应的异常处理。
7-1 测验1-圆类设计 分数 12 作者 段喜龙 单位 南昌航空大学
创建一个圆形类(Circle),私有属性为圆的半径,从控制台输入圆的半径,输出圆的面积
输入格式:
输入圆的半径,取值范围为(0,+∞)
,输入数据非法,则程序输出Wrong Format
,注意:只考虑从控制台输入数值的情况
输出格式:
输出圆的面积(保留两位小数,可以使用String.format(“%.2f”,输出数值)控制精度)
输入样例:
在这里给出一组输入。例如:
2.35
输出样例:
在这里给出相应的输出。例如:
17.35
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
源码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
if (scanner.hasNextDouble()) {
double radius = scanner.nextDouble();
if (radius > 0) {
Circle circle = new Circle();
circle.setRadius(radius);
double area = circle.getArea();
System.out.println(String.format("%.2f", area));
} else {
System.out.println("Wrong Format");
}
} else {
System.out.println("Wrong Format");
}
scanner.close();
}
}
class Circle {
private double radius;
public Circle() {
}
public void setRadius(double radius) {
this.radius = radius;
}
public double getRadius() {
return radius;
}
public double getArea() {
return Math.PI * radius * radius;
}
}
源码类图:
源码分析:
该题很简单,了解类和对象的相关知识就能做出了。
7-2 测验2-类结构设计 分数 18 作者 段喜龙 单位 南昌航空大学
设计一个矩形类,其属性由矩形左上角坐标点(x1,y1)及右下角坐标点(x2,y2)组成,其中,坐标点属性包括该坐标点的X轴及Y轴的坐标值(实型数),求得该矩形的面积。类设计如下图:
输入格式:
分别输入两个坐标点的坐标值x1,y1,x2,y2。
输出格式:
输出该矩形的面积值(保留两位小数)。
输入样例:
在这里给出一组输入。例如:
6 5.8 -7 8.9
输出样例:
在这里给出相应的输出。例如:
40.30
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
源码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
if (scanner.hasNextDouble()) {
double x1 = scanner.nextDouble();
double y1 = scanner.nextDouble();
double x2 = scanner.nextDouble();
double y2 = scanner.nextDouble();
Rectangle rectangle = new Rectangle();
rectangle.setX1(x1);
rectangle.setY1(y1);
rectangle.setX2(x2);
rectangle.setY2(y2);
double area = rectangle.getArea();
System.out.println(String.format("%.2f", area));
}
scanner.close();
}
}
class Rectangle {
private double x1, y1, x2, y2;
public Rectangle() {}
public void setX1(double x1) {
this.x1 = x1;
}
public double getX1() {
return x1;
}
public void setY1(double y1) {
this.y1 = y1;
}
public double getY1() {
return y1;
}
public void setX2(double x2) {
this.x2 = x2;
}
public double getX2() {
return x2;
}
public void setY2(double y2) {
this.y2 = y2;
}
public double getY2() {
return y2;
}
public double getArea() {
return Math.abs((x2 - x1) * (y2 - y1));
}
}
源码分析:
该题很简单,了解类和对象的相关知识就能做出了。
7-3 测验3-继承与多态 分数 30 作者 段喜龙 单位 南昌航空大学
将测验1与测验2的类设计进行合并设计,抽象出Shape父类(抽象类),Circle及Rectangle作为子类,类图如下所示:
试编程完成如上类图设计,主方法源码如下(可直接拷贝使用):
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
int choice = input.nextInt();
switch(choice) {
case 1://Circle
double radiums = input.nextDouble();
Shape circle = new Circle(radiums);
printArea(circle);
break;
case 2://Rectangle
double x1 = input.nextDouble();
double y1 = input.nextDouble();
double x2 = input.nextDouble();
double y2 = input.nextDouble();
Point leftTopPoint = new Point(x1,y1);
Point lowerRightPoint = new Point(x2,y2);
Rectangle rectangle = new Rectangle(leftTopPoint,lowerRightPoint);
printArea(rectangle);
break;
}
}
其中,printArea(Shape shape)
方法为定义在Main类中的静态方法,体现程序设计的多态性。
输入格式:
输入类型选择(1或2,不考虑无效输入)
对应图形的参数(圆或矩形)
输出格式:
图形的面积(保留两位小数)
输入样例1:
1
5.6
输出样例1:
在这里给出相应的输出。例如:
98.52
输入样例2:
2
5.6
-32.5
9.4
-5.6
输出样例2:
在这里给出相应的输出。例如:
102.22
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
源码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int choice = input.nextInt();
switch (choice) {
case 1: // Circle
double radiums = input.nextDouble();
if (radiums <= 0) {
System.out.println("Wrong Format");
return;
}
Shape circle = new Circle(radiums);
printArea(circle);
break;
case 2: // Rectangle
double x1 = input.nextDouble();
double y1 = input.nextDouble();
double x2 = input.nextDouble();
double y2 = input.nextDouble();
Point leftTopPoint = new Point(x1, y1);
Point lowerRightPoint = new Point(x2, y2);
Rectangle rectangle = new Rectangle(leftTopPoint, lowerRightPoint);
printArea(rectangle);
break;
}
}
public static void printArea(Shape shape) {
System.out.printf("%.2f", shape.getArea());
}
}
abstract class Shape {
public abstract double getArea();
}
class Circle extends Shape {
private double radiums;
public Circle(double radiums) {
this.radiums = radiums;
}
@Override
public double getArea() {
return Math.PI * radiums * radiums;
}
}
class Rectangle extends Shape {
private Point leftTopPoint;
private Point lowerRightPoint;
public Rectangle(Point leftTopPoint, Point lowerRightPoint) {
this.leftTopPoint = leftTopPoint;
this.lowerRightPoint = lowerRightPoint;
}
@Override
public double getArea() {
double width = Math.abs(lowerRightPoint.getX() - leftTopPoint.getX());
double height = Math.abs(lowerRightPoint.getY() - leftTopPoint.getY());
return width * height;
}
}
class Point {
private double x;
private double y;
public Point(double x, double y) {
this.x = x;
this.y = y;
}
public double getX() {
return x;
}
public double getY() {
return y;
}
}
源码分析:
该题很简单,了解类和对象的相关知识就能做出了。
7-4 测验4-抽象类与接口 分数 40 作者 段喜龙 单位 南昌航空大学
在测验3的题目基础上,重构类设计,实现列表内图形的排序功能(按照图形的面积进行排序)。
提示:题目中Shape类要实现Comparable接口。
其中,Main类源码如下(可直接拷贝使用):
public class Main {
public static void main(String\[\] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
ArrayList<Shape> list = new ArrayList<>();
int choice = input.nextInt();
while(choice != 0) {
switch(choice) {
case 1://Circle
double radiums = input.nextDouble();
Shape circle = new Circle(radiums);
list.add(circle);
break;
case 2://Rectangle
double x1 = input.nextDouble();
double y1 = input.nextDouble();
double x2 = input.nextDouble();
double y2 = input.nextDouble();
Point leftTopPoint = new Point(x1,y1);
Point lowerRightPoint = new Point(x2,y2);
Rectangle rectangle = new Rectangle(leftTopPoint,lowerRightPoint);
list.add(rectangle);
break;
}
choice = input.nextInt();
}
list.sort(Comparator.naturalOrder());//正向排序
for(int i = 0; i < list.size(); i++) {
System.out.print(String.format("%.2f", list.get(i).getArea()) + " ");
}
}
}
输入格式:
输入图形类型(1:圆形;2:矩形;0:结束输入)
输入图形所需参数
输出格式:
按升序排序输出列表中各图形的面积(保留两位小数),各图形面积之间用空格分隔。
输入样例:
在这里给出一组输入。例如:
1
2.3
2
3.2
3
6
5
1
2.3
0
输出样例:
在这里给出相应的输出。例如:
5.60 16.62 16.62
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
源码:
import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
ArrayList<Shape> list = new ArrayList<>();
int choice = input.nextInt();
while (choice != 0) {
switch (choice) {
case 1: // Circle
double radiums = input.nextDouble();
Shape circle = new Circle(radiums);
list.add(circle);
break;
case 2: // Rectangle
double x1 = input.nextDouble();
double y1 = input.nextDouble();
double x2 = input.nextDouble();
double y2 = input.nextDouble();
Point leftTopPoint = new Point(x1, y1);
Point lowerRightPoint = new Point(x2, y2);
Rectangle rectangle = new Rectangle(leftTopPoint, lowerRightPoint);
list.add(rectangle);
break;
}
choice = input.nextInt();
}
Collections.sort(list);
for (int i = 0; i < list.size(); i++) {
System.out.print(String.format("%.2f", list.get(i).getArea()) + " ");
}
}
}
abstract class Shape implements Comparable<Shape> {
public abstract double getArea();
@Override
public int compareTo(Shape o) {
return Double.compare(this.getArea(), o.getArea());
}
}
class Circle extends Shape {
private double radiums;
public Circle(double radiums) {
this.radiums = radiums;
}
@Override
public double getArea() {
return Math.PI * radiums * radiums;
}
}
class Rectangle extends Shape {
private Point leftTopPoint;
private Point lowerRightPoint;
public Rectangle(Point leftTopPoint, Point lowerRightPoint) {
this.leftTopPoint = leftTopPoint;
this.lowerRightPoint = lowerRightPoint;
}
@Override
public double getArea() {
double width = Math.abs(lowerRightPoint.getX() - leftTopPoint.getX());
double height = Math.abs(lowerRightPoint.getY() - leftTopPoint.getY());
return width * height;
}
}
class Point {
private double x;
private double y;
public Point(double x, double y) {
this.x = x;
this.y = y;
}
public double getX() {
return x;
}
public double getY() {
return y;
}
}
源码类图:
该题很简单,了解类和对象的相关知识就能做出了。
7-1 菜单计价程序-5 分数 100 作者 蔡轲 单位 南昌航空大学
本题在菜单计价程序-3的基础上增加了部分内容,增加的内容用加粗字体标识。
注意不是菜单计价程序-4,本题和菜单计价程序-4同属菜单计价程序-3的两个不同迭代分支。
设计点菜计价程序,根据输入的信息,计算并输出总价格。
输入内容按先后顺序包括两部分:菜单、订单,最后以"end"结束。
菜单由一条或多条菜品记录组成,每条记录一行
每条菜品记录包含:菜名、基础价格 三个信息。
订单分:桌号标识、点菜记录和删除信息、代点菜信息。每一类信息都可包含一条或多条记录,每条记录一行或多行。
桌号标识独占一行,包含两个信息:桌号、时间。
桌号以下的所有记录都是本桌的记录,直至下一个桌号标识。
点菜记录包含:序号、菜名、份额、份数。份额可选项包括:1、2、3,分别代表小、中、大份。
不同份额菜价的计算方法:小份菜的价格=菜品的基础价格。中份菜的价格=菜品的基础价格1.5。小份菜的价格=菜品的基础价格2。如果计算出现小数,按四舍五入的规则进行处理。
删除记录格式:序号 delete
标识删除对应序号的那条点菜记录。
如果序号不对,输出"delete error"
代点菜信息包含:桌号 序号 菜品名称 口味度 份额 份数
代点菜是当前桌为另外一桌点菜,信息中的桌号是另一桌的桌号,带点菜的价格计算在当前这一桌。
程序最后按输入的先后顺序依次输出每一桌的总价(注意:由于有代点菜的功能,总价不一定等于当前桌上的菜的价格之和)。
每桌的总价等于那一桌所有菜的价格之和乘以折扣。如存在小数,按四舍五入规则计算,保留整数。
折扣的计算方法(注:以下时间段均按闭区间计算):
周一至周五营业时间与折扣:晚上(17:00-20:30)8折,周一至周五中午(10:30--14:30)6折,其余时间不营业。
周末全价,营业时间:9:30-21:30
如果下单时间不在营业范围内,输出"table " + t.tableNum + " out of opening hours"
参考以下类的模板进行设计:菜品类:对应菜谱上一道菜的信息。
Dish {
String name;//菜品名称
int unit_price; //单价
int getPrice(int portion)//计算菜品价格的方法,输入参数是点菜的份额(输入数据只能是1/2/3,代表小/中/大份) }
菜谱类:对应菜谱,包含饭店提供的所有菜的信息。
Menu {
Dish[] dishs ;//菜品数组,保存所有菜品信息
Dish searthDish(String dishName)//根据菜名在菜谱中查找菜品信息,返回Dish对象。
Dish addDish(String dishName,int unit_price)//添加一道菜品信息
}
点菜记录类:保存订单上的一道菜品记录
Record {
int orderNum;//序号\\
Dish d;//菜品\\
int portion;//份额(1/2/3代表小/中/大份)\\
int getPrice()//计价,计算本条记录的价格\\
}
订单类:保存用户点的所有菜的信息。
Order {
Record[] records;//保存订单上每一道的记录
int getTotalPrice()//计算订单的总价
Record addARecord(int orderNum,String dishName,int portion,int num)//添加一条菜品信息到订单中。
delARecordByOrderNum(int orderNum)//根据序号删除一条记录
findRecordByNum(int orderNum)//根据序号查找一条记录
}
### 输入格式:
桌号标识格式:table + 序号 +英文空格+ 日期(格式:YYYY/MM/DD)+英文空格+ 时间(24小时制格式: HH/MM/SS)
菜品记录格式:
菜名+英文空格+基础价格
如果有多条相同的菜名的记录,菜品的基础价格以最后一条记录为准。
点菜记录格式:序号+英文空格+菜名+英文空格+份额+英文空格+份数注:份额可输入(1/2/3), 1代表小份,2代表中份,3代表大份。
删除记录格式:序号 +英文空格+delete
代点菜信息包含:桌号+英文空格+序号+英文空格+菜品名称+英文空格+份额+英文空格+分数
最后一条记录以“end”结束。
### 输出格式:
按输入顺序输出每一桌的订单记录处理信息,包括:
1、桌号,格式:table+英文空格+桌号+”:”
2、按顺序输出当前这一桌每条订单记录的处理信息,
每条点菜记录输出:序号+英文空格+菜名+英文空格+价格。其中的价格等于对应记录的菜品\*份数,序号是之前输入的订单记录的序号。如果订单中包含不能识别的菜名,则输出“\*\* does not exist”,\*\*是不能识别的菜名
如果删除记录的序号不存在,则输出“delete error”
最后按输入顺序一次输出每一桌所有菜品的总价(整数数值)格式:table+英文空格+桌号+“:”+英文空格+当前桌的总价
以上为菜单计价系列-3的题目要求,加粗的部分是有调整的内容。本次课题相比菜单计价系列-3新增要求如下:
1、菜单输入时增加特色菜,特色菜的输入格式:菜品名+英文空格+口味类型+英文空格+基础价格+"T"
例如:麻婆豆腐 川菜 9 T
菜价的计算方法:
周一至周五 7折, 周末全价。
特色菜的口味类型:川菜、晋菜、浙菜
川菜增加辣度值:辣度0-5级;对应辣度水平为:不辣、微辣、稍辣、辣、很辣、爆辣;
晋菜增加酸度值,酸度0-4级;对应酸度水平为:不酸、微酸、稍酸、酸、很酸;
浙菜增加甜度值,甜度0-3级;对应酸度水平为:不甜、微甜、稍甜、甜;
例如:麻婆豆腐 川菜 9 T
输入订单记录时如果是特色菜,添加口味度(辣/酸/甜度)值,格式为:序号+英文空格+菜名+英文空格+口味度值+英文空格+份额+英文空格+份数
例如:1 麻婆豆腐 4 1 9
单条信息在处理时,如果口味度超过正常范围,输出"spicy/acidity/sweetness num out of range : "+口味度值,spicy/acidity/sweetness(辣度/酸度/甜度)根据菜品类型择一输出,例如:
acidity num out of range : 5
输出一桌的信息时,按辣、酸、甜度的顺序依次输出本桌菜各种口味的口味度水平,如果没有某个类型的菜,对应的口味(辣/酸/甜)度不输出,只输出已点的菜的口味度。口味度水平由口味度平均值确定,口味度平均值只综合对应口味菜系的菜计算,不做所有菜的平均。比如,某桌菜点了3份川菜,辣度分别是1、3、5;还有4份晋菜,酸度分别是,1、1、2、2,辣度平均值为3、酸度平均值四舍五入为2,甜度没有,不输出。
一桌信息的输出格式:table+英文空格+桌号+:+英文空格+当前桌的原始总价+英文空格+当前桌的计算折扣后总价+英文空格+"川菜"+数量+辣度+英文空格+"晋菜"+数量+酸度+英文空格+"浙菜"+数量+甜度。
如果整桌菜没有特色菜,则只输出table的基本信息,格式如下,注意最后加一个英文空格:
table+英文空格+桌号+:+英文空格+当前桌的原始总价+英文空格+当前桌的计算折扣后总价+英文空格
例如:table 1: 60 36 川菜 2 爆辣 浙菜 1 微甜
计算口味度时要累计本桌各类菜系所有记录的口味度总和(每条记录的口味度乘以菜的份数),再除以对应菜系菜的总份数,最后四舍五入。
注:本题要考虑代点菜的情况,当前桌点的菜要加上被其他桌代点的菜综合计算口味度平均值。
2、考虑客户订多桌菜的情况,输入时桌号时,增加用户的信息:
格式:table+英文空格+桌号+英文空格+":"+英文空格+客户姓名+英文空格+手机号+日期(格式:YYYY/MM/DD)+英文空格+ 时间(24小时制格式: HH/MM/SS)
例如:table 1 : tom 13670008181 2023/5/1 21/30/00
约束条件:客户姓名不超过10个字符,手机号11位,前三位必须是180、181、189、133、135、136其中之一。
输出结果时,先按要求输出每一桌的信息,最后按字母顺序依次输出每位客户需要支付的金额。不考虑各桌时间段的问题,同一个客户的所有table金额都要累加。
输出用户支付金额格式:
用户姓名+英文空格+手机号+英文空格+支付金额
注意:不同的四舍五入顺序可能会造成误差,请按以下步骤累计一桌菜的菜价:
计算每条记录的菜价:将每份菜的单价按份额进行四舍五入运算后,乘以份数计算多份的价格,然后乘以折扣,再进行四舍五入,得到本条记录的最终支付价格。
将所有记录的菜价累加得到整桌菜的价格。
输入格式:
桌号标识格式:table + 序号 +英文空格+ 日期(格式:YYYY/MM/DD)+英文空格+ 时间(24小时制格式: HH/MM/SS)
菜品记录格式:
菜名+口味类型+英文空格+基础价格
如果有多条相同的菜名的记录,菜品的基础价格以最后一条记录为准。
点菜记录格式:序号+英文空格+菜名+英文空格+辣/酸/甜度值+英文空格+份额+英文空格+份数 注:份额可输入(1/2/3), 1代表小份,2代表中份,3代表大份。辣/酸/甜度取值范围见题目中说明。
删除记录格式:序号 +英文空格+delete
代点菜信息包含:桌号+英文空格+序号+英文空格+菜品名称**+英文空格+辣/酸/甜度值+**英文空格+份额+英文空格+分数
最后一条记录以“end”结束。
输出格式:
按输入顺序输出每一桌的订单记录处理信息,包括:
1、桌号,格式:table+英文空格+桌号+“:”+英文空格
2、按顺序输出当前这一桌每条订单记录的处理信息,
每条点菜记录输出:序号+英文空格+菜名+英文空格+价格。其中的价格等于对应记录的菜品\*份数,序号是之前输入的订单记录的序号。如果订单中包含不能识别的菜名,则输出“\*\* does not exist”,\*\*是不能识别的菜名
如果删除记录的序号不存在,则输出“delete error”
之后按输入顺序一次输出每一桌所有菜品的价格(整数数值),
格式:table+英文空格+桌号+“:”+英文空格+当前桌的计算折扣后总价+英文空格+辣度平均值+英文空格+酸度平均值+英文空格+甜度平均值+英文空格
最后按拼音顺序输出每位客户(不考虑客户同名或拼音相同的情况)的支付金额,格式: 用户姓名+英文空格+手机号+英文空格+支付总金额,按输入顺序排列。
输入样例1:
桌号时间超出营业范围。例如:
麻婆豆腐 川菜 12 T
油淋生菜 9
麻辣鸡丝 10
table 1 : tom 13605054400 2023/5/1 21/30/00
1 麻婆豆腐 3 1 2
2 油淋生菜 2 1
3 麻婆豆腐 2 3 2
end
输出样例1:
在这里给出相应的输出。例如:
table 1 out of opening hours
输入样例2:
一种口味的菜品。例如:
麻婆豆腐 川菜 12 T
油淋生菜 9
麻辣鸡丝 10
table 1 : tom 13605054400 2023/5/1 20/30/00
1 麻婆豆腐 2 1 2
2 油淋生菜 2 1
3 麻婆豆腐 2 3 2
end
输出样例2:
在这里给出相应的输出。例如:
table 1:
1 麻婆豆腐 24
2 油淋生菜 14
3 麻婆豆腐 48
table 1: 86 62 川菜 4 稍辣
tom 13605054400 62
输入样例3:
辣度值超出范围。例如:
麻婆豆腐 川菜 12 T
油淋生菜 9
麻辣鸡丝 10
table 1 : tom 13605054400 2023/5/1 18/30/00
1 麻婆豆腐 6 1 2
2 油淋生菜 1 1
3 麻婆豆腐 5 3 2
end
输出样例3:
在这里给出相应的输出。例如:
table 1:
spicy num out of range :6
2 油淋生菜 9
3 麻婆豆腐 48
table 1: 57 41 川菜 2 爆辣
tom 13605054400 41
输入样例4:
同一用户对应多桌菜。例如:
麻婆豆腐 川菜 12 T
油淋生菜 9
麻辣鸡丝 10
table 1 : tom 13605054400 2023/5/1 18/30/00
1 麻婆豆腐 1 1 2
2 油淋生菜 1 1
3 麻婆豆腐 2 2 2
table 2 : tom 13605054400 2023/5/6 18/30/00
1 麻婆豆腐 2 1 2
2 麻辣鸡丝 2 2
3 麻婆豆腐 2 1 1
end
输出样例4:
在这里给出相应的输出。例如:
table 1:
1 麻婆豆腐 24
2 油淋生菜 9
3 麻婆豆腐 36
table 2:
1 麻婆豆腐 24
2 麻辣鸡丝 30
3 麻婆豆腐 12
table 1: 69 49 川菜 4 稍辣
table 2: 66 66 川菜 3 稍辣
tom 13605054400 115
输入样例5:
多用户多桌菜。例如:
东坡肉 浙菜 25 T
油淋生菜 9
蜜汁灌藕 浙菜 10 T
刀削面 晋菜 10 T
醋浇羊肉 晋菜 30 T
麻婆豆腐 川菜 12 T
麻辣鸡丝 川菜 15 T
table 1 : tom 13605054400 2023/5/6 12/30/00
1 醋浇羊肉 4 1 1
3 刀削面 1 1 3
2 东坡肉 3 2 1
4 麻辣鸡丝 2 1 1
table 2 : jerry 18100334566 2023/5/1 12/30/00
1 醋浇羊肉 1 1 2
3 麻婆豆腐 2 2 1
4 麻辣鸡丝 2 3 3
table 3 : jerry 18100334566 2023/5/1 12/30/00
1 醋浇羊肉 2 1 1
3 蜜汁灌藕 1 1 2
2 东坡肉 2 2 1
4 麻辣鸡丝 5 1 1
end
输出样例5:
在这里给出相应的输出。例如:
table 1:
1 醋浇羊肉 30
3 刀削面 30
2 东坡肉 38
4 麻辣鸡丝 15
table 2:
1 醋浇羊肉 60
3 麻婆豆腐 18
4 麻辣鸡丝 90
table 3:
1 醋浇羊肉 30
3 蜜汁灌藕 20
2 东坡肉 38
4 麻辣鸡丝 15
table 1: 113 113 川菜 1 稍辣 晋菜 4 稍酸 浙菜 1 甜
table 2: 168 118 川菜 4 稍辣 晋菜 2 微酸
table 3: 103 73 川菜 1 爆辣 晋菜 1 稍酸 浙菜 3 微甜
jerry 18100334566 191
tom 13605054400 113
输入样例6:
多用户多桌菜含代点菜。例如:
东坡肉 浙菜 25 T
油淋生菜 9
蜜汁灌藕 浙菜 10 T
刀削面 晋菜 10 T
醋浇羊肉 晋菜 30 T
麻婆豆腐 川菜 12 T
麻辣鸡丝 川菜 15 T
table 1 : tom 13605054400 2023/5/6 12/30/00
1 醋浇羊肉 4 1 1
3 刀削面 1 1 3
2 东坡肉 3 2 1
4 麻辣鸡丝 2 1 1
table 2 : jerry 18100334566 2023/5/1 12/30/00
1 1 醋浇羊肉 0 1 2
3 麻婆豆腐 2 2 1
4 麻辣鸡丝 2 3 3
table 3 : lucy 18957348763 2023/5/1 12/30/00
1 醋浇羊肉 2 1 1
3 蜜汁灌藕 1 1 2
2 东坡肉 2 2 1
4 麻辣鸡丝 5 1 1
end
输出样例6:
在这里给出相应的输出。例如:
table 1:
1 醋浇羊肉 30
3 刀削面 30
2 东坡肉 38
4 麻辣鸡丝 15
table 2:
1 table 2 pay for table 1 60
3 麻婆豆腐 18
4 麻辣鸡丝 90
table 3:
1 醋浇羊肉 30
3 蜜汁灌藕 20
2 东坡肉 38
4 麻辣鸡丝 15
table 1: 113 113 川菜 1 稍辣 晋菜 6 微酸 浙菜 1 甜
table 2: 168 118 川菜 4 稍辣
table 3: 103 73 川菜 1 爆辣 晋菜 1 稍酸 浙菜 3 微甜
jerry 18100334566 118
lucy 18957348763 73
tom 13605054400 113
输入样例7:
错误的菜品记录和桌号记录,用户丢弃。例如:
东坡肉 25 T
油淋生菜 9
table 1 : tom 136050540 2023/5/1 12/30/00
2 东坡肉 3 2 1
end
输出样例7:
在这里给出相应的输出。例如:
wrong format
wrong format
代码长度限制
50 KB
时间限制
1000 ms
内存限制
64 MB
源码:
import java.util.*;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Menu menu = new Menu();
Calendar cal = Calendar.getInstance();
Map<Integer, Table> tables = new HashMap<>();
int tcd = 0;
Table table = null;
while (true) {
try {
String ipt = sc.nextLine();
if (ipt.equals("end")) break;
String[] s = ipt.split(" ");
if (s[0].equals("table") && s.length > 4) {
if (s[3].length() > 10) {
System.out.println("wrong format");
continue;
} else if (11 != s[4].length()) {
if (s[4].length() == 11) {
} else {
System.out.println("wrong format");
}
} else {
if (!s[4].matches("(^133|^135|^136|^180|^181|^189)\\d{8}$")) {
System.out.println("wrong format");
continue;
}
}
Table tb = new Table(s[5].split("/"), s[6].split("/"));
if (checkTime(tb) == 1) {
table = tb;
table.name = s[3];
table.phone = s[4];
tcd = Integer.parseInt(s[1]);
tables.put(tcd, table);
System.out.println("table " + tcd + ": ");
} else if (checkTime(tb) == 0) {
tb.name = s[3];
tb.phone = s[4];
tcd = Integer.parseInt(s[1]);
tables.put(tcd, tb);
} else {
System.out.println("wrong format");
}
} else if (Pattern.matches("^\\d+\\s\\d+\\s\\S+\\s\\d+\\s\\d+\\s\\d+", ipt) && table != null) {
// 1 1 醋浇羊肉 0 1 2
try {
Dish dish = menu.find(s[2]);
if (dish == null) {
System.out.println(s[2] + " does not exist");
} else {
if (dish.checkDegree(Integer.parseInt(s[3]))) {
int tableNo = Integer.parseInt(s[0]);
int ordern = Integer.parseInt(s[1]);
int gg = Integer.parseInt(s[4]);
int fs = Integer.parseInt(s[5]);
Record rec = new Record(dish, fs, gg, Integer.parseInt(s[3]));
table.otherMap.put(ordern, rec);
tables.get(tableNo).DaiMap.put(ordern, rec);
table.otherTableInfo.put(ordern, tableNo - 1);
System.out.println(ordern + " table " + tcd + " pay for table " + tableNo + " " + rec.price);
}
}
} catch (Exception e) {
System.out.println("wrong format");
}
} else if (ipt.contains("T")) {
Dish dish;
if (ipt.contains("川")) {
dish = new ChuanCai(s[0], Integer.parseInt(s[2]));
dish.type = 3;
} else if (ipt.contains("晋")) {
dish = new JinCai(s[0], Integer.parseInt(s[2]));
dish.type = 2;
} else if (ipt.contains("浙")) {
dish = new ZheCai(s[0], Integer.parseInt(s[2]));
dish.type = 1;
} else {
System.out.println("wrong format");
continue;
}
menu.add(dish);
} else if (Pattern.matches("^\\d+\\s\\S+\\s\\d+\\s\\d+\\s\\d+", ipt) && table != null) {
//1 麻婆豆腐 4 1 9
try {
Dish dish = menu.find(s[1]);
if (dish == null) {
System.out.println(s[1] + " does not exist");
} else {
if (dish.checkDegree(Integer.parseInt(s[2]))) {
int no = Integer.parseInt(s[0]);
Record record = new Record(dish, Integer.parseInt(s[4]), Integer.parseInt(s[3]), Integer.parseInt(s[2]));
table.records.put(no, record);
table.ownFees += record.price;
System.out.println(no + " " + dish.name + " " + record.price);
}
}
} catch (Exception e) {
System.out.println("wrong format");
}
} else if (s.length == 2) {
if (s[1].equals("delete") && table != null) {
//7 delete
int i = Integer.parseInt(s[0]);
if (!table.del(i)) {
if (table.otherMap.remove(i) != null) {
Integer t = table.otherTableInfo.get(i);
tables.get(t).DaiMap.remove(i);
}
}
// System.out.println("delete error;");
} else if (tcd == 0) {
//麻婆豆腐 12
menu.add(s[0], Integer.parseInt(s[1]));
}
} else if (s.length == 4) if (s[0].equals("table")) {
//table 1 : tom 13670008181 2023/5/1 21/30/00
} else {
if (table != null) {
try {
//1 麻婆豆腐 2 2
Dish dish = menu.find(s[1]);
if (dish == null) {
System.out.println(s[1] + " does not exist");
} else if (dish.type != 0) {
System.out.println("wrong format");
} else {
int no = Integer.parseInt(s[0]);
Record record = new Record(dish, Integer.parseInt(s[3]), Integer.parseInt(s[2]));
table.records.put(no, record);
table.ownFees += record.price;
System.out.println(no + " " + dish.name + " " + record.price);
}
} catch (Exception e) {
System.out.println("wrong format");
}
}
}
else if (s.length == 5 && table != null) {
//1 4 麻婆豆腐 1 1
Dish dish = menu.find(s[2]);
if (dish == null) {
System.out.println(s[2] + " does not exist");
} else {
try {
int tableNo = Integer.parseInt(s[0]);
int ordern = Integer.parseInt(s[1]);
int heft = Integer.parseInt(s[3]);
int fs = Integer.parseInt(s[4]);
Record rec = new Record(dish, fs, heft);
table.otherMap.put(ordern, rec);
tables.get(tableNo).DaiMap.put(ordern, rec);
table.otherTableInfo.put(ordern, tableNo - 1);
System.out.println(ordern + " table " + tcd + " pay for table " + tableNo + " " + rec.price);
} catch (Exception e) {
System.out.println("wrong format");
}
}
}
} catch (Exception e) {
System.out.println("wrong format");
}
}
Map<String, Integer> all = new TreeMap<>();
for (Map.Entry<Integer, Table> entryT : tables.entrySet()) {
int ii = entryT.getKey();
Table t = entryT.getValue();
int year = Integer.parseInt(t.day[0]);
int month = Integer.parseInt(t.day[1]) - 1;
int day = Integer.parseInt(t.day[2]);
int hour = Integer.parseInt(t.time[0]);
cal.set(year, month, day);
int week = cal.get(Calendar.DAY_OF_WEEK);
float discount;
if (week == 1 || week == 7) {
if ((hour >= 10 && hour <= 20)
|| (hour == 9 && Integer.parseInt(t.time[1]) >= 30)
|| (hour == 21 && Integer.parseInt(t.time[1]) == 30 && Integer.parseInt(t.time[2]) == 0)) {
discount = 1.0F;
} else {
System.out.println("table " + (ii) + " out of opening hours");
continue;
}
} else {
if ((hour >= 17 && hour <= 19)
|| (hour == 20 && Integer.parseInt(t.time[1]) <= 30 && Integer.parseInt(t.time[2]) == 0)) {
discount = 0.8F;
} else if ((hour >= 11 && hour <= 13)
|| (hour == 10 && Integer.parseInt(t.time[1]) >= 30)
|| (hour == 14 && Integer.parseInt(t.time[1]) <= 30 && Integer.parseInt(t.time[2]) == 0)
) {
discount = 0.6F;
} else {
System.out.println("table " + (ii) + " out of opening hours");
continue;
}
}
if (all.get(t.name + " " + t.phone) == null) {
all.put(t.name + " " + t.phone, t.allhou(discount));
} else {
Integer r = all.get(t.name + " " + t.phone);
r += t.allhou(discount);
all.put(t.name + " " + t.phone, r);
}
System.out.println("table " + (ii) + ": " + t.allqian() + " " + t.allhou(discount) + t.getT());
}
for (Map.Entry<String, Integer> entry : all.entrySet()) {
System.out.println(entry.getKey() + " " + entry.getValue());
}
}
public static int checkTime(Table t) {
try {
Calendar cal = Calendar.getInstance();
int year = Integer.parseInt(t.day[0]);
int month = Integer.parseInt(t.day[1]) - 1;
int day = Integer.parseInt(t.day[2]);
int hour = Integer.parseInt(t.time[0]);
cal.set(year, month, day);
int week = cal.get(Calendar.DAY_OF_WEEK);
if (week == 1 || week == 7) {
if ((hour >= 10 && hour <= 20)
|| (hour == 9 && Integer.parseInt(t.time[1]) >= 30)
|| (hour == 21 && Integer.parseInt(t.time[1]) == 30 && Integer.parseInt(t.time[2]) == 0)) {
return 1;
} else {
return 0;
}
} else {
if ((hour >= 17 && hour <= 19)
|| (hour == 20 && Integer.parseInt(t.time[1]) <= 30 && Integer.parseInt(t.time[2]) == 0)) {
return 1;
} else if ((hour >= 11 && hour <= 13)
|| (hour == 10 && Integer.parseInt(t.time[1]) >= 30)
|| (hour == 14 && Integer.parseInt(t.time[1]) <= 30 && Integer.parseInt(t.time[2]) == 0)
) {
return 1;
} else {
return 0;
}
}
}catch (Exception e){
System.out.println("wrong format");
return -1;
}
}
}
class Dish {
String name;
int price;
int type;
public Dish(String name, int price) {
this.name = name;
this.price = price;
}
boolean checkDegree(int degree) {
return true;
}
}
class ChuanCai extends Dish {
public ChuanCai(String name, int price) {
super(name, price);
}
@Override
boolean checkDegree(int degree) {
if (degree < 0 || degree > 5) {
System.out.println("spicy num out of range :" + degree);
return false;
}
return true;
}
}
class JinCai extends Dish {
public JinCai(String name, int price) {
super(name, price);
}
@Override
boolean checkDegree(int degree) {
if (degree < 0 || degree > 4) {
System.out.println("acidity num out of range :" + degree);
return false;
}
return true;
}
}
class ZheCai extends Dish {
public ZheCai(String name, int price) {
super(name, price);
}
@Override
boolean checkDegree(int degree) {
if (degree < 0 || degree > 3) {
System.out.println("sweetness num out of range :" + degree);
return false;
}
return true;
}
}
class Menu {
int count = 0;
Map<String, Dish> dishes = new HashMap();
public void add(String name, int price) {
dishes.put(name, new Dish(name, price));
// dishes[count] = new Dish(name, price);
count++;
}
public void add(Dish dish) {
dishes.put(dish.name, dish);
count++;
}
public Dish find(String name) {
return dishes.get(name);
}
}
class Record {
Dish dish;
int unit_price;
int heft;
int price;
int degree;
public Record(Dish dish, int fs, int heft) {
this.degree = -1;
this.dish = dish;
this.heft = heft;
this.unit_price = fs;
if (heft == 1) {
price = dish.price * fs;
} else if (heft == 2) {
price = Math.round((float) dish.price * 1.5f) * fs;
} else if (heft == 3) {
price = dish.price * 2 * fs;
}
}
public Record(Dish dish, int fs, int heft, int degree) {
this.dish = dish;
this.degree = degree;
this.heft = heft;
this.unit_price = fs;
if (heft == 1) {
price = dish.price * fs;
} else if (heft == 2) {
price = Math.round((float) dish.price * 1.5f) * fs;
} else if (heft == 3) {
price = dish.price * 2 * fs;
}
}
}
class Table {
Map<Integer, Record> records = new HashMap<>();
String[] day;
String[] time;
String name;
String phone;
int ownFees = 0;
Map<Integer, Record> otherMap = new HashMap<>();
Map<Integer, Integer> otherTableInfo = new HashMap<>();
Map<Integer, Record> DaiMap = new HashMap<>();
public Table(String[] day, String[] time) {
this.day = day;
this.time = time;
}
public boolean del(int no) {
if (records.get(no) == null) {
return false;
} else {
ownFees -= records.get(no).price;
records.remove(no);
return true;
}
}
public int allqian() {
int sum = 0;
for (Record record : records.values()) {
if (record == null) continue;
sum += record.price;
}
for (Record value : otherMap.values()) {
sum += value.price;
}
return sum;
}
public int allhou(float discount) {
if (discount == 0.6F) {
int sum = 0;
for (Record record : records.values()) {
if (record == null) continue;
if (record.dish.type == 0) {
sum += Math.round((float) record.price * discount);
} else {
sum += Math.round((float) record.price * 0.7);
}
}
for (Record value : otherMap.values()) {
if (value.dish.type == 0) {
sum += Math.round((float) value.price * discount);
} else {
sum += Math.round((float) value.price * 0.7);
}
}
return sum;
} else if (discount == 0.8F) {
int sum = 0;
for (Record record : records.values()) {
if (record == null) continue;
if (record.dish.type == 0) {
sum += Math.round((float) record.price * discount);
} else {
sum += Math.round((float) record.price * 0.7);
}
}
for (Record value : otherMap.values()) {
if (value.dish.type == 0) {
sum += Math.round((float) value.price * discount);
} else {
sum += Math.round((float) value.price * 0.7);
}
}
return sum;
} else {
return allqian();
}
}
public String getT() {
List<Record> chuanCai = new ArrayList<>();
List<Record> jinCai = new ArrayList<>();
List<Record> zheCai = new ArrayList<>();
String r = " ";
for (Record record : records.values()) {
if (record == null) {
continue;
}
switch (record.dish.type) {
case 1 : zheCai.add(record);
case 2 : jinCai.add(record);
case 3 : chuanCai.add(record);
}
}
for (Map.Entry<Integer, Record> entry : DaiMap.entrySet()) {
switch (entry.getValue().dish.type) {
case 1 : zheCai.add(entry.getValue());
case 2 : jinCai.add(entry.getValue());
case 3 : chuanCai.add(entry.getValue());
}
}
if (chuanCai.size() != 0) {
int degree = 0;
int unit_price = 0;
for (Record record : chuanCai) {
degree += record.degree * record.unit_price;
unit_price += record.unit_price;
}
int pingjun = Math.round((float) degree / (float) unit_price);
String[] ll = {"不辣", "微辣", "稍辣", "辣", "很辣", "爆辣"};
r = r + " 川菜 " + unit_price + " " + ll[pingjun];
}
if (jinCai.size() != 0) {
int degree = 0;
int unit_price = 0;
for (Record record : jinCai) {
degree += record.degree * record.unit_price;
unit_price += record.unit_price;
}
int pingjun = Math.round((float) degree / (float) unit_price);
String[] ll = {"不酸", "微酸", "稍酸", "酸", "很酸"};
r = r + " 晋菜 " + unit_price + " " + ll[pingjun];
}
if (zheCai.size() != 0) {
int degree = 0;
int unit_price = 0;
for (Record record : zheCai) {
degree += record.degree * record.unit_price;
unit_price += record.unit_price;
}
int pingjun = Math.round((float) degree / (float) unit_price);
String[] ll = {"不甜", "微甜", "稍甜", "甜"};
r = r + " 浙菜 " + unit_price + " " + ll[pingjun];
}
return r.replaceAll(" {2}", " ");
}
}
源码类图:
源码分析:
1.需要按照题目中要求的格式进行输出,包括输入顺序输出每一桌的订单记录处理信息、输出每一桌所有菜品的价格、按字母顺序输出每位客户需要支付的金额等。在输出时,需要注意格式的准确性和排版的美观性,注意将数据进行四舍五入等处理,以及对异常情况进行适当的处理,保证程序的稳定性和可靠性。
2.需要考虑到各种异常的情况,在程序中进行相应的处理。比如,存在不能识别的菜名时,需要输出“** does not exist”;删除记录的序号不存在时,需要输出“delete error”等。还需要注意口味度的范围限制等异常情况的处理,使程序具有较好的健壮性。
三.遇到的困难和改进建议
困难:对Time类的懵懂、对抛出异常使用的懵懂、对String中nextLine的懵懂
改进建议:希望老师能在每次作业截止之后及时把答案发出来给同学们参考并及时公布每次作业各个测试点的详细信息,让学生能更好的查缺补漏提升自己而不是仅且仅当各次题目当成一个截止了就不用管的题目
四.总结
经过这一阶段的学习,我对Java库中的诸多类和容器的使用有了进一步的了解,也认识到面向对象程序的设计思维非常重要,要合理地对多个类进行分离和封装,提高代码的可读性,使方法的调用与修改更加便捷,不影响到其他部分。最重要的一点就是遇到难题时,不能退缩,要勇于尝试,逐步攻克难关,这样才能有所收获
标签:总结,Java,int,PTA,else,Integer,parseInt,table,out From: https://www.cnblogs.com/gxorgyjj/p/17516795.html