我写的Java学生成绩管理系统源代码(2) * Created on 2005-1-11 */
/** * @author 让炜 * @since 1.0 * * TODO 学生成绩管理系统 * 通过学号查找,修改,删除数据 * */public class LittleProgram { static boolean isDelete = true; static boolean isFind = true; public static void main(String [] args)//主方法,程序从这里开始运行 throws IOException,NumberNotFoundException { int choice=-1; do{ LittleProgram lp = new LittleProgram(); System.out.println(); System.out.println("\t####################################"); System.out.println(); System.out.println("\t\t Java学生成绩管理系统1.1"); System.out.println("\t\t请用学号查找,修改,删除数据"); System.out.println(); System.out.println("\t####################################\n"); System.out.print("1.增加数据:\n"+ "2.查找数据:\n"+ "3.删除数据:\n"+ "4.清除所有数据:\n"+