添加、查找、修改价格、删除商品。
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;
public class Test1 {
public static void main(String[] args) throws Exception{
Spgl shipin=new Spgl();
BufferedReader sr=new BufferedReader(new InputStreamReader(System.in));
while(true){
System.out.println("请按提示选择以下功能");
System.out.println("添加食品请按1");
System.out.println("查找食品信息请按2");
System.out.println("修改食品价格请按3");
System.out.println("删除食品请按4");
System.out.println("退出请按0");
String str=sr.readLine();//读取一行
if(str.equals("1")){
System.out.println("请输入食品的编号");
String bh=sr.readLine();
System.out.println("请输入食品名称");
String mc=sr.readLine();
System.out.println("请输入食品价格");
float jg=Float.parseFloat(sr.readLine());
Sp sp=new Sp(bh,mc,jg);
shipin.addsp(sp);
}