/*
* 这一个学生信息管理程序
* 包含基础的增加,删除,修改,查询功能
*
* */
//用户界面模块
package com.useinterface;
import java.util.Scanner;
import com.funcation.Funcation;;
public class UI {
public static void main(String [] args){
System.out.println("******欢迎使用学生信息管理系统*******");
Scanner sc = new Scanner(System.in);
for (int count = 1 ;true; count++){
System.out.println("请输入用户名和密码格式为: 用户名-密码");
String user_passwd = sc.nextLine();
if (user_passwd.equals("root-root")){
break;
}
else if(count == 5){
System.out.println("第"+count+"输入错误,程序结束");
return;
}
else{
System.out.println("第"+count+"输入错误");
}
}
sc.close();
Funcation f = new Funcation();
f.funcation();
}
}
|
|