今日基本要求:
家庭资金管理系统:
主页面
第一个界面
第二个界面
第三个
第四个界面
主程序文件
public class family{
public static void main(String[] args){
//³ÌÐòµÄÖ÷º¯Êý¼´³ÌÐòµÄÈë¿ÚÎļþ
boolean isexit = true;
System.out.println("³ÌÐòÒѾ½øÈë");
double count = 10000;
String pro = "";
do{
System.out.println("-----------------¼ÒÍ¥ÊÕÖ§¼ÇÕËÈí¼þ-----------------\n");
System.out.println(" 1 ÊÕÖ§Ã÷ϸ");
System.out.println(" 2 µÇ¼ÇÊÕÈë");
System.out.println(" 3 µÇ¼ÇÖ§³ö");
System.out.println(" 4 ÍË ³ö");
System.out.print(" ÇëÑ¡Ôñ(1-4):");
char select = Utility.readMenuSelection();
switch(select){
case '1':
System.out.println("-----------------µ±Ç°ÊÕÖ§Ã÷ϸ¼Ç¼-----------------");
System.out.println("ÊÕÖ§\tÕË»§½ð¶î\tÊÕÖ§½ð¶î\t˵ Ã÷");
System.out.println(pro+"\n");
System.out.println("--------------------------------------------------");
break;
case '2':
System.out.print("±¾´ÎÊÕÈë½ð¶î:");
double money = Utility.readNumber();
count += money;
System.out.print("ÊÕÈë˵Ã÷");
String reason = Utility.readString();
pro += "ÊÕÈë\t"+count+"\t\t"+money+"\t\t"+reason+"\n";
System.out.println("-----------------µÇ¼ÇÍê³É-----------------");
break;
case '3':
System.out.print("±¾´ÎÖ§³ö½ð¶î:");
double getmoney = Utility.readNumber();
if (getmoney>count) {
System.out.println("Óà¶î²»×ã");
break;
}
count -= getmoney;
System.out.print("Ö§³ö˵Ã÷");
String getreason = Utility.readString();
pro += "ÊÕÈë\t"+count+"\t\t"+getmoney+"\t\t"+getreason+"\t";
System.out.println("-----------------µÇ¼ÇÍê³É-----------------");
break;
case '4':
System.out.println("È·ÈÏÊÇ·ñÍ˳ö(Y/N)");
char exit = Utility.readConfirmSelection();
if (exit == 'Y') {
isexit = false;
break;
}
}
}while(isexit);
}
}
函数程序文件
import java.util.Scanner;
/**
Utility工具类:
将不同的功能封装为方法,就是可以直接通过调用方法使用它的功能,而无需考虑具体的功能实现细节。
*/
public class Utility {
private static Scanner scanner = new Scanner(System.in);
/**
用于界面菜单的选择。该方法读取键盘,如果用户键入’1’-’4’中的任意字符,则方法返回。返回值为用户键入字符。
*/
public static char readMenuSelection() {
char c;
for (; ; ) {
String str = readKeyBoard(1);
c = str.charAt(0);
if (c != '1' && c != '2' && c != '3' && c != '4') {
System.out.print("选择错误,请重新输入:");
} else break;
}
return c;
}
/**
用于收入和支出金额的输入。该方法从键盘读取一个不超过4位长度的整数,并将其作为方法的返回值。
*/
public static int readNumber() {
int n;
for (; ; ) {
String str = readKeyBoard(4);
try {
n = Integer.parseInt(str);
break;
} catch (NumberFormatException e) {
System.out.print("数字输入错误,请重新输入:");
}
}
return n;
}
/**
用于收入和支出说明的输入。该方法从键盘读取一个不超过8位长度的字符串,并将其作为方法的返回值。
*/
public static String readString() {
String str = readKeyBoard(8);
return str;
}
/**
用于确认选择的输入。该方法从键盘读取‘Y’或’N’,并将其作为方法的返回值。
*/
public static char readConfirmSelection() {
char c;
for (; ; ) {
String str = readKeyBoard(1).toUpperCase();
c = str.charAt(0);
if (c == 'Y' || c == 'N') {
break;
} else {
System.out.print("选择错误,请重新输入:");
}
}
return c;
}
private static String readKeyBoard(int limit) {
String line = "";
while (scanner.hasNext()) {
line = scanner.nextLine();
if (line.length() < 1 || line.length() > limit) {
System.out.print("输入长度(不大于" + limit + ")错误,请重新输入:");
continue;
}
break;
}
return line;
}
}